-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
69 lines (69 loc) · 1.67 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
{
"name": "complaint-management-system",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "12.18.3",
"npm": "6.14.6",
"yarn": "1.22.4"
},
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"format": "prettier --write \"**/*.{js,json,md}\"",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
},
"author": "Aadarsha",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm run format",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@hapi/joi": "^16.1.8",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.7",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"moment": "^2.29.2",
"mongoose": "^5.7.13",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"snazzy": "^8.0.0",
"standard": "^14.3.4"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"commitlint": "^11.0.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"prettier": "^2.1.2"
},
"standard": {
"ignore": [
"build/",
"public/",
"node_modules/",
"dist/"
]
}
}