-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.65 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
{
"name": "node-backend-boilerplate",
"description": "A basic boilerplate for nodejs backend application with support of mysql, express",
"version": "0.0.1",
"private": false,
"author": "Harshit jain",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/harshitj2005/node-backend-boilerplate.git"
},
"engines": {
"node": "12.13.x",
"npm": "6.12.x"
},
"scripts": {
"start": "",
"test": "mocha",
"postinstall": "cp config/env/development.json5.sample config/env/development.json5 && cp config/env/production.json5.sample config/env/production.json5"
},
"dependencies": {
"app-module-path": "2.2.0",
"async": "3.2.0",
"bcrypt": "5.0.1",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cookie-parser": "1.4.5",
"express": "4.17.1",
"express-request-id": "^1.4.1",
"glob": "7.1.6",
"helmet": "^4.4.1",
"json5": "2.2.0",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"nconf": "^0.11.2",
"nocache": "^2.1.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"sequelize": "^6.6.2",
"sequelize-cli": "^6.2.0",
"serve-favicon": "^2.5.0",
"standard-error": "^1.1.0",
"winston": "^2.4.2"
},
"devDependencies": {
"mocha": "8.3.2",
"chai": "^4.3.4",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-ava": "^5.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1"
},
"eslintIgnore": [
"/dist/*.js"
]
}