-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.8 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
{
"name": "nodejs-ecommerce-stor",
"version": "1.0.0",
"main": "index.js",
"type": "commonjs",
"scripts": {
"start": "cross-env NODE_ENV=production node server.js",
"start:dev": "nodemon server.js",
"start:prod": "cross-env NODE_ENV=production node server.js",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0",
"axios": "^1.10.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"cloudinary": "^1.41.3",
"colors": "^1.4.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^16.6.1",
"express": "^5.1.0",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.5.1",
"express-rate-limiter": "^1.3.1",
"express-validation": "^4.1.1",
"express-validator": "^7.2.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"memory-cache": "^0.2.0",
"mongoose": "^8.14.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.2",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^7.0.3",
"nodemon": "^3.1.11",
"path-to-regexp": "^6.2.1",
"qr-image": "^3.2.0",
"qs": "^6.14.0",
"rate-limiter": "^0.2.0",
"redis": "^5.9.0",
"sharp": "^0.34.1",
"slugify": "^1.6.6",
"stripe": "^18.5.0",
"uuid": "^11.1.0"
},
"description": "",
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"jest": "^30.0.2",
"prettier": "^3.5.3",
"supertest": "^7.1.1"
}
}