-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.25 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": "startease-expressjs-project",
"version": "1.0.0",
"description": "Expressjs project generated using startease CLI tool",
"type": "module",
"scripts": {
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cloudinary": "^2.2.0",
"compression": "^1.7.4",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"luxon": "^3.4.4",
"mongoose": "^7.5.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.13",
"resend": "^3.2.0",
"winston": "^3.10.0",
"zod": "^3.23.4"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.1.0",
"prettier": "^3.1.1"
}
}