forked from Shubhankardubey/boilerplate-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.9 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "boilerplate-node",
"version": "0.1.0",
"private": true,
"engines": {
"npm": "6.1.0",
"node": "10.14.1"
},
"scripts": {
"start": "node ./dist/bin/www",
"build": "gulp build",
"test": "mocha \"./src/**/*.spec.js\" --env='{\"NODE_CONFIG_ENV\":\"testing\"}'",
"test-dist": "mocha \"./dist/**/*.spec.js\" --env='{\"NODE_CONFIG_ENV\":\"testing\"}'",
"serve": "gulp serve",
"lint": "gulp lint",
"heroku-postbuild": "npm run build",
"heroku-start": "pm2-runtime start ecosystem.config.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"@sentry/node": "^4.1.1",
"async": "^2.6.1",
"awesome-phonenumber": "^2.3.3",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"config": "^1.30.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"ejs": "^2.5.7",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"express-winston": "^2.5.1",
"i18n": "^0.8.3",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.15",
"mongoose": "^5.8.3",
"pm2": "^3.2.7",
"uuid": "^3.3.2",
"winston": "^2.4.3",
"winston-papertrail": "^1.0.5"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"gulp": "^4.0.2",
"gulp-babel": "^7.0.1",
"gulp-eslint": "^5.0.0",
"gulp-nodemon": "^2.4.2",
"husky": "^0.14.3",
"lint-staged": "^7.3.0",
"mocha": "git://github.com/jalantechnologies/mocha.git#7aee408a4173fabb74287de0d0f50b63ae2e270a"
}
}