-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.15 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
{
"name": "planeo",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "clear && next dev --turbopack",
"build": "next build",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"cf-typegen": "wrangler types",
"lint": "next lint",
"diagrams": "node scripts/render-diagrams.mjs",
"check:diagrams": "node scripts/check-diagrams.mjs",
"test": "vitest run",
"test:watch": "vitest",
"verify": "prettier --write . && next lint --fix --no-cache && npx tsc --noEmit && node scripts/check-diagrams.mjs && vitest run",
"check": "npm run verify && npx playwright test --reporter=list",
"deps": "npx npm-check-updates",
"deps:update": "npx npm-check-updates -u && npm run nuke",
"nuke": "rm -rf node_modules package-lock.json .next .open-next && npm install",
"test:e2e": "playwright test",
"test:e2e:watch": "playwright test --watch"
},
"dependencies": {
"@dimforge/rapier3d": "^0.17.1",
"@dimforge/rapier3d-compat": "^0.17.1",
"@google/genai": "^1.0.1",
"@opennextjs/cloudflare": "^1.19.11",
"@react-three/drei": "^10.0.8",
"@react-three/fiber": "^9.1.2",
"@react-three/postprocessing": "^3.0.4",
"@react-three/rapier": "^2.1.0",
"immer": "^10.1.1",
"nanoid": "^3.3.12",
"next": "^15.5.19",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"three": "^0.176.0",
"uuid": "^11.1.0",
"zod": "^3.25.28",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.52.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "^15.5.19",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"npm-check-updates": "^18.0.1",
"playwright": "^1.52.0",
"prettier": "^3.5.3",
"tailwindcss": "^4",
"typescript": "^5",
"typescript-eslint": "^8.32.1",
"vitest": "^4.1.8",
"wrangler": "^4.97.0"
}
}