forked from carnwyr/OM-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
63
64
65
66
{
"name": "om-collection",
"version": "0.0.0",
"engines": {
"node": "^20.9.0"
},
"private": true,
"scripts": {
"build": "gulp minify",
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"devstart": "gulp devstart",
"prepare": "node .husky/install.mjs"
},
"dependencies": {
"@sentry/node": "^8.48.0",
"async": "^3.2.3",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.3",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"cookie-parser": "~1.4.4",
"core-js": "^3.6.5",
"crypto-random-string": "^3.3.0",
"dayjs": "^1.10.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "^4.21.2",
"express-session": "^1.17.1",
"express-validator": "^6.6.1",
"form-data": "^4.0.0",
"helmet": "^4.6.0",
"http-errors": "~1.6.3",
"i18next": "^20.2.1",
"i18next-fs-backend": "^1.1.1",
"i18next-http-middleware": "^3.1.1",
"mailgun.js": "^11.1.0",
"mongoose": "^6.13.5",
"morgan": "~1.9.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pug": "^3.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"eslint": "^9.18.0",
"eslint-config-jquery": "^3.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.15.1",
"globals": "^15.14.0",
"gulp": "^5.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-nodemon": "^2.2.1",
"gulp-terser": "^2.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"nodemon": "^3.1.9",
"prettier": "3.4.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}