forked from andychan94/roth-2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.27 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
{
"name": "grand-stack-starter-ui",
"version": "0.0.1",
"description": "UI app for GRANDstack",
"dependencies": {
"@apollo/react-hooks": "^3.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@material-ui/core": "^3.6.0",
"@material-ui/icons": "^3.0.1",
"apollo-boost": "^0.1.22",
"bootstrap": "^4.3.1",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"prettier": "^1.15.2",
"react": "^16.8.0",
"react-apollo": "^2.3.2",
"react-bootstrap": "^1.0.0-beta.12",
"react-dom": "^16.8.0",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.1.1",
"serve": "^10.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"now-start": "serve build/"
},
"devDependencies": {
"husky": "^1.2.0",
"lint-staged": "^8.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,graphql}": [
"prettier --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}