-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
{
"name": "graphql-demo",
"version": "1.0.0",
"license": "ISC",
"engines": {
"node": "^14.20",
"yarn": "^1.22"
},
"scripts": {
"start:api": "cd ./api && yarn install && yarn start",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint --fix src api",
"serve": "serve -s build"
},
"dependencies": {
"apollo-cache-inmemory": "1.6.5",
"apollo-client": "2.0.1",
"apollo-link": "1.0.0",
"apollo-link-http": "1.0.0",
"apollo-link-ws": "1.0.0",
"apollo-utilities": "1.0.1",
"graphql": "0.11.7",
"graphql-tag": "2.5.0",
"material-ui": "1.0.0-beta.23",
"material-ui-icons": "1.0.0-beta.17",
"prop-types": "15.6.0",
"react": "16.10.0",
"react-animate-on-change": "1.0.1",
"react-apollo": "2.0.0",
"react-dom": "16.10.0"
},
"devDependencies": {
"react-scripts": "4.0.3",
"serve": "14.2.0"
},
"resolutions": {
"//": "See https://github.com/facebook/create-react-app/issues/11773",
"react-error-overlay": "6.0.9"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}