-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "graphql-backend",
"version": "1.0.0",
"description": "A server that implements graphql",
"main": "./dist/index.js",
"engines": {
"node": "^8.0.0"
},
"scripts": {
"start": "nodemon ./src/index.js --exec babel-node -e js",
"build": "babel src -d dist -s",
"serve": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Michel Paupulaire",
"license": "MIT",
"devDependencies": {
"dotenv": "^5.0.0",
"flow-bin": "^0.70.0",
"nodemon": "^1.12.1"
},
"dependencies": {
"apollo-server-express": "^1.1.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.1",
"graphql": "^0.11.0",
"graphql-iso-date": "^3.3.0",
"graphql-subscriptions": "^0.5.4",
"graphql-tools": "^3.0.0",
"http": "^0.0.0",
"lodash": "^4.17.4",
"moment": "^2.19.1",
"path": "^0.12.7",
"subscriptions-transport-ws": "^0.9.1"
}
}