-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.66 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
{
"name": "audify",
"version": "1.0.0",
"description": "E-commerce website for audio products",
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"commitlint": "npx commitlint --from=HEAD~1"
},
"author": "Ijas Ahammed",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"chart.js": "^4.4.4",
"cloudinary": "^2.4.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^8.2.1",
"express-session": "^1.18.0",
"express-validator": "^7.3.1",
"http-status-codes": "^2.3.0",
"jspdf": "^2.5.2",
"jspdf-autotable": "^3.8.3",
"moment": "^2.30.1",
"mongoose": "^8.5.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.14",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"pdfkit": "^0.15.0",
"razorpay": "^2.9.4",
"sweetalert2": "^11.14.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-security": "^3.0.1",
"nodemon": "^3.1.4",
"prettier": "^3.7.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0"
}
}