-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.76 KB
/
package.json
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
{
"name": "profile",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.15.4",
"scripts": {
"dev": "concurrently -n path,next --hide path \"pnpm dev:path\" \"pnpm dev:next\"",
"dev:next": "next dev",
"dev:path": "pathpida -p .gitignore -o app -ws",
"dev:turbo": "next dev --turbo",
"build": "pathpida -p .gitignore -o app -s && next build",
"t:dev": "turbo dev",
"t:build": "turbo build",
"start": "next start",
"test": "pnpm exec playwright test",
"pw:open": "pnpm exec playwright test --ui",
"pw:update": "pnpm exec playwright test --update-snapshots",
"lint": "eslint . --fix",
"update:latest": "pnpm update --latest --interactive",
"update:env": "vercel env pull .env.local"
},
"dependencies": {
"@react-three/drei": "9.121.2",
"@react-three/fiber": "9.0.0-rc.4",
"@vercel/analytics": "1.4.1",
"clsx": "2.1.1",
"leva": "0.9.35",
"next": "15.1.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-use": "17.6.0",
"three": "0.172.0"
},
"devDependencies": {
"@playwright/test": "1.49.1",
"@types/node": "22.10.7",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"@types/three": "0.172.0",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"autoprefixer": "10.4.20",
"concurrently": "9.1.2",
"daisyui": "4.12.23",
"eslint": "8.57.1",
"eslint-config-next": "15.1.4",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.2",
"pathpida": "0.23.1",
"postcss": "8.5.1",
"prettier": "3.4.2",
"tailwindcss": "3.4.17",
"turbo": "2.3.3",
"typescript": "5.7.3",
"vercel": "39.3.0"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": ">=18",
"react-dom": ">=18"
}
}
},
"engines": {
"node": "20.x || 22.x"
}
}