-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.82 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "express-template",
"version": "1.5.0",
"description": "Express template with TypeScript",
"author": {
"name": "Suman Sharma",
"email": "mansu7802@gmail.com",
"url": "https://sumansharma.me"
},
"license": "ISC",
"main": "src/server.ts",
"scripts": {
"build": "tsc && resolve-tspaths",
"dev": "cross-env NODE_ENV=development tsx watch ./src/server.ts",
"clean": "tsc --build --clean",
"start": "cross-env NODE_ENV=production node build/server.js",
"format": "prettier --write .",
"lint": "eslint . --ext .ts --ignore-pattern 'build/**'",
"lint:fix": "eslint . --ext .ts --ignore-pattern 'build/**' --fix",
"prepare": "husky",
"pm2:dev": "pm2 start ecosystem.config.js --env development",
"pm2:prod": "pm2 start ecosystem.config.js --env production",
"fix": "npm run lint:fix && npm run format"
},
"keywords": [],
"dependencies": {
"@sendgrid/mail": "^8.1.4",
"compression": "^1.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv-flow": "^4.1.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"express-ruid": "^1.1.5",
"express-slow-down": "^2.0.3",
"express-useragent": "^1.0.15",
"handlebars": "^4.7.8",
"helmet": "^8.0.0",
"i18next": "^24.2.2",
"i18next-fs-backend": "^2.6.0",
"i18next-http-middleware": "^3.7.1",
"morgan": "^1.10.0",
"multer": "1.4.5-lts.1",
"prom-client": "^15.1.3",
"request-ip": "^3.3.0",
"typescript": "^5.8.2",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"zod": "^3.24.2"
},
"devDependencies": {
"resolve-tspaths": "^0.8.23",
"@eslint/js": "^9.21.0",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "4.17.17",
"@types/express-useragent": "^1.0.5",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.13.9",
"@types/qs": "^6.14.0",
"@types/request-ip": "^0.0.41",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"ts-morph": "^26.0.0",
"ts-node": "^10.9.2",
"tsc-watch": "^7.0.0",
"tsx": "^4.19.4",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0"
},
"lint-staged": {
"src/**/*{.js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}