-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.82 KB
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
{
"name": "clothica-shop-backend",
"version": "1.0.0",
"description": "Clothica Backend API",
"main": "src/server.js",
"type": "module",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"create-admin": "node src/scripts/createAdmin.js",
"lint:check": "eslint .",
"audit:security": "npm audit --audit-level=high",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nodejs",
"express",
"rest-api",
"swagger",
"mongodb",
"helmet",
"express-rate-limit",
"clothica"
],
"author": "neuropunk87 <neurosoldier@gmail.com>",
"license": "ISC",
"dependencies": {
"@adminjs/express": "^6.1.1",
"@adminjs/mongoose": "^4.1.0",
"adminjs": "^7.8.17",
"bcrypt": "^6.0.0",
"celebrate": "^15.0.3",
"cloudinary": "^2.9.0",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"express-session": "^1.19.0",
"handlebars": "^4.7.9",
"helmet": "^8.2.0",
"http-errors": "^2.0.0",
"i18next": "^25.7.4",
"i18next-fs-backend": "^2.6.6",
"i18next-http-middleware": "^3.9.7",
"mongoose": "^8.24.1",
"multer": "^2.2.0",
"node-telegram-bot-api": "^1.0.0",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.2",
"resend": "^6.12.3",
"slugify": "^1.6.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"baseline-browser-mapping": "^2.10.38",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"nodemon": "^3.1.10"
},
"overrides": {
"@tiptap/extension-link": "2.10.4",
"i18next-http-backend": "^3.0.6",
"lodash": "^4.18.1",
"tinymce": "^7.9.3",
"uuid": "^11.1.1"
}
}