-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.72 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
{
"main": "server.js",
"scripts": {
"prelint": "npx prettier . --write",
"lint": " eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky",
"serve": "nodemon -q",
"start": "node server.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji",
"conventional": true
}
},
"dependencies": {
"app-module-path": "^2.2.0",
"auto-bind": "4",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"connect-roles": "^3.1.2",
"cookie-parser": "^1.4.6",
"dotenv-safe": "^9.1.0",
"ejs": "^3.1.9",
"express": "^4.19.2",
"express-ejs-layouts": "^2.5.1",
"express-recaptcha": "^5.1.0",
"express-session": "^1.18.0",
"express-validator": "^7.0.1",
"gravatar": "^1.8.2",
"helmet": "^7.1.0",
"http-errors": "^2.0.0",
"http-status": "^1.7.4",
"i18n": "^0.15.1",
"method-override": "^3.0.0",
"mkdirp": "^3.0.1",
"moment-jalaali": "^0.10.0",
"mongoose": "^8.2.4",
"mongoose-paginate-v2": "^1.8.0",
"multer": "1.4.5-lts.1",
"nodemailer": "^6.9.13",
"passport": "^0.7.0",
"passport-google-oauth": "^2.0.0",
"passport-local": "^1.0.0",
"serve-favicon": "^2.5.0",
"sha1": "^1.1.1",
"sharp": "^0.33.3",
"slugify": "^1.6.6",
"sprintf-js": "^1.1.3",
"superagent": "^9.0.2",
"unique-string": "2"
},
"devDependencies": {
"commitizen": "^4.3.0",
"commitlint": "^19.2.1",
"commitlint-config-gitmoji": "^2.3.1",
"cz-conventional-changelog": "^3.3.0",
"cz-emoji": "1.3.2-canary.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.4.12"
}
}