-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.39 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
{
"name": "e-dukaan-backend",
"version": "1.0.0",
"description": "E-Dukaan - A robust, scalable e-commerce backend built with Node.js, Express, MongoDB Atlas, and JWT authentication",
"main": "server.mjs",
"type": "module",
"scripts": {
"start": "node server.mjs",
"dev": "nodemon server.mjs",
"seed:categories": "node scripts/seed-categories.mjs",
"seed:database": "node scripts/seed-database.mjs",
"reset:database": "node scripts/reset-database.mjs",
"setup:categories": "node scripts/update-categories-ultra-simple.mjs"
},
"keywords": [
"ecommerce",
"nodejs",
"express",
"mongodb",
"jwt",
"authentication",
"stripe",
"rest-api",
"atlas",
"crud",
"shopping-cart",
"payments"
],
"author": "Faizan Ahmad",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.2.1",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.7.3",
"multer": "^2.0.2",
"nodemailer": "^6.9.8",
"sharp": "^0.33.5",
"stripe": "^17.4.0",
"uuid": "^9.0.1",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"eslint-plugin-security": "^3.0.1",
"nodemon": "^3.0.2"
}
}