-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.16 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "webgl-tesla-workshop",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@react-three/cannon": "^4.6.1",
"@react-three/drei": "^8.8.1",
"@react-three/fiber": "^7.0.26",
"@react-three/flex": "^0.7.0",
"@react-three/gltfjsx": "^4.3.4",
"@react-three/postprocessing": "^2.1.2",
"@react-three/xr": "^3.3.0",
"next": "12.0.10",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-spring": "^9.4.2",
"react-use-gesture": "^9.1.3",
"sass": "^1.49.7",
"three": "^0.137.5",
"use-cannon": "^0.5.3",
"uuid": "^8.3.2",
"zustand": "^3.6.9"
},
"devDependencies": {
"@types/node": "17.0.14",
"@types/react": "17.0.39",
"@types/three": "^0.137.0",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"husky": "^7.0.0",
"node-sass": "^7.0.1",
"typescript": "4.5.5"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}