-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.93 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.93 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
{
"name": "planeto",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings=0",
"verify": "prettier --write . && npm run lint && npx tsc --noEmit",
"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 && npm install",
"test:e2e": "playwright test",
"test:e2e:watch": "playwright test --watch"
},
"dependencies": {
"@dimforge/rapier3d": "^0.19.3",
"@dimforge/rapier3d-compat": "^0.19.3",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.4.2",
"@react-three/postprocessing": "^3.0.4",
"@react-three/rapier": "^2.2.0",
"better-sqlite3": "^12.5.0",
"immer": "^11.0.1",
"next": "16.0.8",
"next-auth": "^4.24.13",
"next-pwa": "^5.6.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"simplex-noise": "^4.0.3",
"three": "^0.181.2",
"uuid": "^13.0.0",
"zod": "^4.1.13",
"zustand": "^5.0.9"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@flydotio/dockerfile": "^0.7.10",
"@next/eslint-plugin-next": "^16.0.8",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^11.0.0",
"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"
}
}