-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.77 KB
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
52
53
{
"name": "graphql-mongodb-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"populate": "babel-node ./scripts/seed/seedDatabase.js",
"clean": "rm -rf build && rm -rf dist",
"server": "nodemon ./server.js --exec babel-node",
"start": "nodemon --watch ./data/**/*.js --exec \"npm run update-schema && npm run start-prod\"",
"update-schema": "babel-node ./scripts/schema/updateSchema.js",
"build": "NODE_ENV=production webpack --config webpack.config.prod.js --progress",
"start-prod": "npm run clean && npm run build && NODE_ENV=production PORT=8080 nodemon ./build/[build].backend.js",
"dev": "NODE_ENV=development webpack --config webpack.config.dev.js --watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-relay-plugin": "^0.11.0",
"babel-runtime": "^6.23.0",
"casual": "^1.5.12",
"gulp-babel": "^6.1.2",
"gulp-graphql": "^0.2.0",
"morgan": "^1.8.1",
"webpack": "^2.4.1"
},
"dependencies": {
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-runtime": "^6.23.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"express-graphql": "^0.6.4",
"graphql-relay": "^0.5.1",
"gulp": "^3.9.1",
"jest": "^20.0.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"mongodb": "^2.2.26",
"mongoose": "^4.9.6",
"nodemon": "^1.11.0",
"source-map-support": "^0.4.15",
"webpack-merge": "^4.1.0"
}
}