-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "express-rest-boilerplate",
"version": "0.0.2",
"description": "Boilerplate api",
"license": "MIT",
"author": "Noud Adrichem",
"main": "dist",
"scripts": {
"dev": "NODE_ENV=development nodemon -w src --exec \"babel-node src -s --presets es2015,stage-0\" | bunyan -o short",
"build": "babel src -s -D -d dist --presets es2015,stage-0",
"start": "NODE_ENV=production pm2 start dist --name cde",
"prestart": "npm run -s build",
"lint": "eslint src",
"preinstall": "ls",
"publish": "git push heroku master; heroku open; heroku logs -t;"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"express": "^4.15.4",
"express-validator": "^5.1.2",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"jsonwebtoken": "^8.2.1",
"mongoose": "^4.13.6",
"passport": "^0.4.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"eslint": "^4.5.0",
"nodemon": "^1.14.12"
}
}