-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 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
{
"name": "dojo-nodejs",
"version": "1.0.0",
"main": "src/app.js",
"author": "Maximiliano Dalla Porta",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint src || exit 0",
"dev": "nodemon --exec babel-node src/app.js",
"start": "npm run build && npm run start:pm2",
"build": "npm run stop && babel src -d build",
"start:pm2": "pm2 start process.yml && pm2 monit",
"stop": "pm2 stop process.yml",
"restart": "pm2 restart process.yml"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"hateoas": "^1.0.0",
"helmet": "^3.21.0",
"joi": "^14.3.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-private-methods": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/runtime": "^7.6.0",
"babel-eslint": "11.0.0-beta.0",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-promise": "^4.2.1",
"husky": "^3.0.5",
"nodemon": "^1.19.2",
"pm2": "^3.5.1"
}
}