-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.13 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
{
"name": "ni",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/core": "0.6.0",
"@emotion/core": "10.0.27",
"@emotion/styled": "10.0.27",
"date-fns": "2.10.0",
"emotion-theming": "10.0.27",
"gh-pages": "2.2.0",
"husky": "4.2.3",
"lint-staged": "10.0.8",
"prettier": "1.19.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-loops": "1.3.0",
"react-scripts": "3.4.0"
},
"scripts": {
"build": "react-scripts build",
"deploy": "react-scripts build && cp CNAME build/ && gh-pages -d build",
"eject": "react-scripts eject",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"postbuild": "react-snap",
"start": "react-scripts start",
"test": "react-scripts test"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"react-snap": "1.23.0"
}
}