-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "project-triocart",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "nodemon ./bin/www",
"start": "pm2 start ./bin/www",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"axios": "^1.6.1",
"bcrypt": "^5.0.0",
"cookie-parser": "~1.4.4",
"cropperjs": "^1.6.1",
"debug": "~2.6.9",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.17.3",
"http-errors": "~1.6.3",
"lodash": "^4.17.21",
"mongodb": "^6.3.0",
"mongoose": "^8.0.0",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.7",
"nodemon": "^3.0.1",
"razorpay": "^2.9.2",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"prettier": "^3.1.0"
}
}