forked from panagiop/node.js-clean-architecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.69 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
{
"name": "server",
"version": "1.0.0",
"description": "app",
"main": "app.js",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"scripts": {
"clean": "rm -rf build && mkdir build",
"build-server": "babel --out-dir ./build . --source-maps --copy-files --ignore 'node_modules/**/*.js'",
"build": "npm run clean && npm run build-server",
"start": "pm2 start ./build/app.js -i ${NODE_PROCESSES} --no-daemon",
"dev": "NODE_ENV=development nodemon --exec babel-node app.js",
"test": "./node_modules/.bin/mocha --require @babel/register './tests/**/*.test.js' --timeout 30000",
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore . --fix"
},
"author": "panagiop",
"dependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.17",
"@babel/node": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/runtime": "^7.12.18",
"@godaddy/terminus": "^4.6.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"helmet": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.17",
"morgan": "^1.10.0",
"pm2": "^5.1.2",
"redis": "^3.0.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.17",
"babel-eslint": "^10.1.0",
"chai": "^4.3.0",
"chai-http": "^4.3.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"faker": "^5.4.0",
"husky": "^4.3.8",
"mocha": "^9.2.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"request": "^2.88.2",
"sinon": "^9.2.4"
}
}