-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "ladybird-ui",
"version": "0.1.0",
"private": true,
"homepage": "/",
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@chakra-ui/react": "^1.0.0",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@material-ui/core": "^4.12.2",
"apollo-boost": "^0.4.7",
"framer-motion": "^4.1.17",
"graphql": "^15.5.1",
"query-string": "^6.8.3",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-google-login": "^5.2.2",
"react-router-dom": "^5.2.0",
"universal-cookie": "^4.0.3"
},
"scripts": {
"start": "PORT=3001 REACT_APP_ENV=development react-scripts start",
"build:dev": "REACT_APP_ENV=development react-scripts build",
"build:prod": "REACT_APP_ENV=production react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "npm run build && gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/universal-cookie": "^2.2.0",
"gh-pages": "^2.1.1",
"husky": "^4.2.3",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.1",
"react-scripts": "^3.3.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}