-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 810 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 810 Bytes
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
{
"name": "node-gql-subscriptions",
"description": "Graphql server with apollo server and subscriptions",
"version": "0.0.1",
"author": "Jose Miguel Navarro <jmn8718@gmail.com>",
"scripts": {
"start": "nodemon -w src --exec \"babel-node src/index.js\"",
"build": "babel src -s -D -d dist"
},
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "~1.17.1",
"compression": "^1.6.2",
"cookie-parser": "~1.4.3",
"express": "~4.15.2",
"graphql": "^0.10.1",
"graphql-server-express": "^0.8.0",
"graphql-tools": "^1.0.0",
"helmet": "^3.6.1",
"mongoose": "^4.10.5",
"morgan": "~1.8.1",
"subscriptions-transport-ws": "^0.7.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.5.1",
"nodemon": "^1.11.0"
}
}