-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "graphql-server",
"version": "1.0.0",
"description": "A server that implements graphql",
"main": "./dist/index.js",
"engines": {
"node": "8.8.0"
},
"scripts": {
"serve": "nodemon ./src/index.js --exec babel-node -e js",
"prestart": "babel src -d dist -s",
"start": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Michel Paupulaire",
"license": "MIT",
"devDependencies": {
"dotenv": "^4.0.0",
"nodemon": "^1.12.1"
},
"dependencies": {
"apollo-engine": "^0.4.6",
"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-stage-0": "^6.24.1",
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"connect-mongodb-session": "^1.4.0",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dataloader": "^1.3.0",
"express": "^4.16.1",
"express-session": "^1.15.6",
"graphql": "^0.11.7",
"graphql-iso-date": "^3.3.0",
"graphql-subscriptions": "^0.5.4",
"graphql-tools": "^2.3.0",
"http": "^0.0.0",
"lodash": "^4.17.4",
"moment": "^2.19.1",
"mongoose": "^4.12.4",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"path": "^0.12.7",
"subscriptions-transport-ws": "^0.9.1"
}
}