-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 976 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
{
"name": "3d-clocks",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write . && eslint --fix --ext .ts src/",
"lint": "prettier --check . && eslint --ext .ts src/",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"volta": {
"node": "18.16.0",
"yarn": "1.22.19"
},
"devDependencies": {
"@types/three": "^0.150.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"prettier-plugin-glsl": "^0.0.10",
"stats.js": "^0.17.0",
"three": "^0.151.3",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-plugin-glsl": "^1.1.2"
}
}