-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.75 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
{
"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",
"start": "if-env NODE_ENV=production ?? npm run start:prod || npm run start: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",
"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-joi-validation": "^4.0.1",
"glob": "^7.1.5",
"helmet": "^3.21.2",
"if-env": "^1.0.4",
"ipware": "^2.0.0",
"jest": "^26.6.3",
"joi": "^14.3.1",
"joi-date-extensions": "^1.2.0",
"knex": "^0.19.5",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"mysql": "^2.17.1",
"objection": "^1.6.11",
"ramda": "^0.26.1",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.2.1"
},
"devDependencies": {
"mocha": "^6.2.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"nodemon": "^1.19.4",
"node-env-run": "^2.0.1",
"husky": "^6.0.0"
}
}