-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.73 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
62
63
64
65
66
67
68
69
{
"name": "hfl",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/gsap": "^1.20.0",
"@types/react-color": "^2.13.6",
"@types/react-countup": "^4.0.0",
"@types/styled-components": "^4.1.3",
"events": "^3.0.0",
"gsap": "^2.0.2",
"mobx": "^5.6.0",
"mobx-react-lite": "^0.3.4",
"nes.css": "https://github.com/BcRikko/NES.css",
"node-sass": "^4.10.0",
"phaser": "^3.15.1",
"prettier": "^1.15.3",
"query-string": "^6.2.0",
"react": "^16.7.0-alpha.2",
"react-color": "^2.14.1",
"react-countup": "^4.0.0",
"react-dom": "^16.7.0-alpha.2",
"react-draggable": "^3.0.5",
"react-scripts": "^2.1.1",
"react-spring": "^6.1.10",
"styled-components": "^4.1.2",
"ts-key-enum": "^2.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && sw-precache --config=sw-precache-config.js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"@types/events": "^1.2.0",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.10",
"@types/react": "^16.7.10",
"@types/react-dom": "^16.0.11",
"gh-pages": "^2.0.1",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"sw-precache": "^5.2.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx,scss}": [
"prettier --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}