-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "express-ts-boilerplate",
"version": "0.0.1",
"description": "Restful API Node Server using Express & Typescript",
"main": "./src",
"scripts": {
"build": "tsc",
"start": "pm2 start ecosystem.config.json --no-daemon",
"dev": "cross-env NODE_ENV=development nodemon src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.ts",
"prettier:fix": "prettier --write **/*.ts",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.7",
"@types/nodemailer": "^6.4.17",
"@types/otp-generator": "^4.0.2",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/validator": "^13.12.2",
"eslint": "^9.18.0",
"eslint-plugin-perfectionist": "^4.6.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"http-status": "^2.1.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.9.5",
"morgan": "^1.10.0",
"nodemailer": "^6.9.16",
"otp-generator": "^4.0.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pm2": "^5.4.3",
"validator": "^13.12.0",
"winston": "^3.17.0",
"zod": "^3.24.1"
}
}