-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.5 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"dependencies": {
"@gfazioli/mantine-marquee": "^4.0.1",
"@gfazioli/mantine-parallax": "^4.0.0",
"@gfazioli/mantine-text-animate": "^4.0.0",
"@mantine/core": "9.0.2",
"@mantine/hooks": "9.0.2",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/bundle-analyzer": "^16.2.4",
"@next/third-parties": "^16.2.4",
"@tabler/icons-react": "^3.41.1",
"@vercel/analytics": "^1.6.1",
"next": "16.2.4",
"nextra": "4.6.1",
"nextra-theme-docs": "4.6.1",
"react": "19.2.5",
"react-dom": "19.2.5",
"swr": "^2.4.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@storybook/addon-themes": "^10.3.5",
"@storybook/nextjs": "^10.3.5",
"@storybook/react": "^10.3.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.12.2",
"@types/react": "19.2.14",
"babel-loader": "^10.1.1",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"oxfmt": "^0.43.0",
"oxlint": "^1.60.0",
"pagefind": "^1.5.2",
"postcss": "^8.5.10",
"postcss-import": "^16.1.1",
"postcss-preset-mantine": "1.18.0",
"postcss-simple-vars": "^7.0.1",
"storybook": "^10.3.5",
"stylelint": "^16.26.1",
"stylelint-config-standard-scss": "^16.0.0",
"ts-jest": "^29.4.9",
"turbopack-inline-svg-loader": "^1.0.3",
"typescript": "6.0.3"
},
"resolutions": {
"dompurify": "^3.4.0",
"lodash": "^4.18.0",
"lodash-es": "^4.18.0",
"brace-expansion": "^2.0.3"
},
"name": "wpbones-docs",
"packageManager": "yarn@4.14.1",
"private": true,
"scripts": {
"analyze": "ANALYZE=true next build",
"build": "next build && yarn build:pagefind",
"build:pagefind": "pagefind --site .next/server/app --output-path public/_pagefind",
"dev": "next dev",
"oxlint": "oxlint --ignore-pattern public/_pagefind .",
"jest": "jest",
"jest:watch": "jest --watch",
"lint": "yarn oxlint && yarn stylelint",
"format:test": "oxfmt --check \"**/*.{ts,tsx,css}\"",
"format:write": "oxfmt --write \"**/*.{ts,tsx,css}\"",
"start": "next start",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"stylelint": "stylelint '**/*.css' --cache",
"test": "yarn next typegen && yarn format:test && yarn lint && yarn typecheck && yarn jest",
"typecheck": "tsc --noEmit"
},
"version": "2.0.3"
}