-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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": "gql-simplified",
"version": "1.0.0",
"description": "A simple NodeJS GraphQL server for MVPs and medium-sized applications",
"main": "server.js",
"scripts": {
"start": "nodemon bin/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"generate": "plop --plopfile generators/index.js",
"build": "babel src --presets babel-preset-es2015 --out-dir distribution-src"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"nodemon": "^1.11.0"
},
"dependencies": {
"@cdm-logger/server": "^3.0.2",
"bcrypt": "^2.0.0",
"body-parser": "^1.17.1",
"bunyan": "^1.8.12",
"cors": "^2.8.3",
"dotenv": "^6.0.0",
"express": "^4.15.2",
"graphql": "^0.10.1",
"graphql-rabbitmq-subscriptions": "^1.1.0",
"graphql-server-core": "^0.8.2",
"graphql-server-express": "^0.8.2",
"graphql-server-module-graphiql": "^0.8.2",
"graphql-subscriptions": "^0.4.3",
"graphql-tools": "^1.0.0",
"jsonwebtoken": "^8.2.1",
"merge-graphql-schemas": "^1.5.1",
"mongodb": "^3.0.5",
"object-assign-deep": "^0.4.0",
"plop": "^2.1.0",
"subscriptions-transport-ws": "^0.7.3"
}
}