-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) 路 788 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) 路 788 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
{
"dependencies": {
"babel-preset-stage-0": "^6.24.1",
"colors": "^1.1.2",
"cors": "^2.8.3",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-graphql": "^0.6.3",
"graphql": "^0.9.1",
"mongoose": "^4.10.2",
"serve-favicon": "^2.4.3"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.0",
"eslint": "^3.19.0",
"nodemon": "^1.11.0"
},
"scripts": {
"lint": "eslint src/**/*.js",
"dev": "nodemon --exec \"npm run lint && npm start\" --ignore public/js --ignore public/javascript --ignore public/javascripts",
"start": "ENV=dev babel-node ./src/app.js",
"build": "babel src -d .dist",
"serve": "ENV=prod node .dist/app.js"
}
}