-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.25 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
73
74
75
76
77
78
79
80
81
82
{
"name": "express-boiler-plate",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "jest --config ./jest.config.json",
"test:watch": "npm run test -- --watch",
"precommit": "npm test",
"prepush": "npm test",
"start": "if-env NODE_ENV=production ?? npm run start:prod || npm run start:dev",
"dev": "nodemon server.js .env.dev",
"start:dev": "nodemon server.js .env.dev",
"start:prod": "node server.js .env.prod",
"clean": "rm -rf node_modules",
"reinstall": "npm run clean && npm install",
"rebuild": "npm run clean && npm install && npm run dev",
"prepare": "husky install"
},
"keywords": [
"express",
"folder structure",
"boiler plate",
"ORM",
"Class Based",
"Node js boilerplate",
"boiler plate",
"nodejs folder structure",
"expressjs boiler plate"
],
"author": "Prasun Jaiswal",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^16.1.7",
"agentkeepalive": "4.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"boom": "^7.3.0",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-boom": "^3.0.0",
"express-ip-access-control": "1.0.5",
"express-joi-validation": "^4.0.1",
"glob": "^7.1.5",
"helmet": "^3.21.2",
"husky": "6.0.0",
"if-env": "^1.0.4",
"ipware": "^2.0.0",
"joi": "^14.3.1",
"joi-date-extensions": "^1.2.0",
"moment": "^2.24.0",
"mongoose": "^5.12.9",
"mongoose-autopopulate": "0.14.0",
"mongoose-type-email": "1.1.2",
"morgan": "^1.9.1",
"ramda": "^0.26.1",
"superagent": "6.1.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"jest": "^26.6.3",
"mocha": "^6.2.2",
"node-env-run": "^2.0.1",
"nodemon": "^1.19.4",
"husky": "^6.0.0"
},
"husky": {
"hooks": {
"applypatch-msg": "echo \"[Husky] applypatch-msg\" ",
"pre-applypatch": "echo \"[Husky] pre-applypatch\" ",
"post-applypatch": "echo \"[Husky] post-applypatch\" ",
"pre-commit": "echo \"[Husky] pre-commit\" "
}
}
}