-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.09 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.09 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
{
"name": "planeto",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"preview": "next build && wrangler dev --port 3000",
"deploy": "next build && wrangler deploy",
"lint": "eslint . --max-warnings=0",
"verify": "prettier --write . && npm run lint && npx tsc --noEmit && npx tsc -p worker/tsconfig.json --noEmit",
"test": "vitest",
"test:run": "vitest run",
"check": "npm run verify && npm run test:run && 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 out && npm install",
"diagrams": "node scripts/render-diagrams.mjs",
"check:diagrams": "node scripts/check-diagrams.mjs",
"test:e2e": "playwright test",
"test:e2e:watch": "playwright test --watch"
},
"dependencies": {
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.4.2",
"@react-three/postprocessing": "^3.0.4",
"@react-three/rapier": "^2.2.0",
"@sentry/react": "^10.56.0",
"immer": "^11.0.1",
"nanoid": "^3.3.11",
"next": "16.0.8",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"simplex-noise": "^4.0.3",
"three": "^0.181.2",
"zod": "^4.1.13",
"zustand": "^5.0.9"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260604.1",
"@eslint/eslintrc": "^3",
"@next/eslint-plugin-next": "^16.0.8",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.0.8",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"npm-check-updates": "^19.1.2",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"tailwindcss": "^4",
"typescript": "^5",
"typescript-eslint": "^8.49.0",
"vitest": "^4.0.15",
"wrangler": "^4.97.0"
}
}