-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·61 lines (61 loc) · 1.28 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
52
53
54
55
56
57
58
59
60
61
{
"name": "template",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "src/index.js",
"dependencies": {
"@timohausmann/quadtree-js": "^1.2.1",
"@xstate/react": "^0.8.1",
"drei": "^0.0.32",
"gsap": "^3.2.6",
"immer": "^6.0.3",
"lerp": "^1.0.3",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-scripts": "3.0.1",
"react-spring": "^9.0.0-rc.3",
"react-three-fiber": "4.2.3",
"styled-components": "^5.1.0",
"three": "0.115.0",
"three-plain-animator": "^1.0.2",
"use-cannon": "0.4.4",
"use-sound": "^1.0.1",
"uuid": "^7.0.3",
"xstate": "^4.9.1",
"zustand": "^2.2.3"
},
"devDependencies": {
"husky": "4.2.5",
"lint-staged": "10.2.2",
"prettier": "2.0.5",
"typescript": "3.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 80,
"trailingComma": "es5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}