-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1008 Bytes
/
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
{
"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.18.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"express-winston": "^2.5.1",
"graphql": "^0.13.2",
"graphql-tools": "^3.0.2",
"lodash": "^4.17.10",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-markdown": "^3.3.2",
"react-scripts": "1.1.4",
"react-toggle": "^4.0.2",
"sqlite": "^2.9.2",
"sqlite3": "^4.0.0",
"uuid": "^3.2.1",
"winston": "^2.4.2"
},
"devDependencies": {
"nodemon": "^1.17.5",
"concurrently": "^3.5.1"
}
}