-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 892 Bytes
/
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
{
"name": "sample-node-config",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"babel-cli": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"bcryptjs": "^2.4.3",
"express": "^4.15.3",
"express-sanitizer": "^1.0.2",
"express-validator": "^4.2.1",
"helmet": "^3.9.0",
"mysql": "^2.15.0"
},
"scripts": {
"start": "nodemon index.js --exec babel-node --presets es2015",
"lint": "eslint \"/**/*.js\" \"test/**/*.js\""
},
"author": "JW",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"node-inspector": "^1.1.1",
"nodemon": "^1.12.0",
"webpack": "^3.7.1"
}
}