forked from js-republic/graphql-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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": "graphql-workshop",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"engines": {
"node": ">=6.14.2"
},
"scripts": {
"start": "concurrently --names 'HTTP,WATCH' -c 'bgBlue.bold,bgMagenta.bold' 'nodemon server' 'react-scripts start'"
},
"proxy": "http://localhost:3001/",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"express-winston": "^4.0.3",
"graphql": "^14.6.0",
"graphql-tools": "^4.0.7",
"lodash": "^4.17.15",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-markdown": "^4.3.1",
"react-scripts": "3.4.0",
"react-toggle": "^4.1.1",
"sqlite": "^3.0.3",
"sqlite3": "^4.1.1",
"uuid": "^7.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"nodemon": "^2.0.2",
"concurrently": "^5.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}