-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.61 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
{
"name": "nwalker-next",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.15.9",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"tokens": "token-forge build -i tokens/nwalker-dark.yaml -o src/styles/tokens.css --color-format hex",
"prebuild": "pnpm run tokens",
"predev": "pnpm run tokens",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@xstate/react": "^6.0.0",
"framer-motion": "^12.34.0",
"next": "16.2.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"xstate": "^5.28.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@nwalker/token-forge": "file:../../tools/token-forge",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.4",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"jsdom": "^28.0.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"brace-expansion@<1.1.13": "1.1.13",
"brace-expansion@>=2.0.0 <2.0.3": "2.0.3",
"ajv@<6.14.0": "6.14.0",
"flatted@<=3.4.1": "3.4.2",
"minimatch@<3.1.4": "3.1.4",
"minimatch@>=9.0.0 <9.0.7": "9.0.7",
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"postcss": "8.5.10",
"rollup": "4.59.0",
"undici": "7.24.0",
"vite": "7.3.2"
}
}
}