-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.07 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.07 KB
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
{
"name": "glare-admin",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.0.1",
"apollo-cache-inmemory": "^1.2.9",
"apollo-client": "^2.4.1",
"apollo-link-http": "^1.5.4",
"graphql": "^14.0.2",
"graphql-ast-types": "^1.0.2",
"graphql-tag": "^2.9.2",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"ra-data-graphql": "^2.2.2",
"react": "^16.4.2",
"react-admin": "^2.2.2",
"react-apollo": "^2.1.11",
"react-dom": "^16.4.2",
"react-scripts": "2.0.5"
},
"scripts": {
"start": "PORT=4000 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier",
"git add"
]
},
"devDependencies": {
"eslint-plugin-jest": "^21.22.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}