-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 989 Bytes
/
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
{
"name": "rubic-cool",
"version": "1.0.0",
"scripts": {
"postinstall": "[ -z \"$HUSKY\" ] && husky install .husky || echo \"ignore husky\"",
"lint": "eslint . --max-warnings 0 --ext ts",
"format": "prettier --write '**/*.ts'",
"type-check": "tsc --noEmit",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest"
},
"lint-staged": {
"*.@(ts)": [
"pnpm lint",
"pnpm format"
]
},
"devDependencies": {
"@types/node": "^20.12.2",
"@types/three": "^0.140.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.4.3",
"vite": "^5.2.7",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"dependencies": {
"three": "^0.141.0"
}
}