-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.64 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
{
"name": "voidstrike",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"prebuild": "node scripts/generate-music-manifest.js",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"optimize-models": "node scripts/optimize-models.js",
"generate-manifests": "node scripts/generate-music-manifest.js",
"prepare": "husky"
},
"dependencies": {
"@recast-navigation/three": "^0.43.0",
"next": "^16.1.2",
"nostr-tools": "^2.10.4",
"pako": "^2.1.0",
"phaser": "^4.0.0-rc.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"recast-navigation": "^0.43.0",
"three": "^0.182.0",
"zustand": "^5.0.10"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,scss,md,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/pako": "^2.0.3",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.172.0",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.16",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.4.32",
"prettier": "^3.8.1",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
}
}