-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.13 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
67
68
69
70
71
72
{
"name": "ts-backend-production-template",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"dist": "npx tsc",
"dev": "cross-env NODE_ENV=development nodemon --legacy-watch src/server.ts",
"start": "cross-env NODE_ENV=production node dist/server.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format:check": "prettier . --check",
"format:fix": "prettier . --fix",
"prepare": "husky",
"migrate:dev": "cross-env MIGRATE_MODE=development node script/migration.js",
"migrate:prod": "cross-env MIGRATE_MODE=production node script/migration.js"
},
"author": "coder bb",
"license": "ISC",
"lint-staged": {
"*.ts": [
"npm run lint:fix",
"npm run format:fix"
]
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.9.0",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.2.0",
"@types/source-map-support": "^0.5.10",
"@types/uuid": "^10.0.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"nodemon": "^3.1.4",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"dependencies": {
"bcrypt": "^5.1.1",
"colorette": "^2.0.20",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"countries-and-timezones": "^3.6.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"dotenv-flow": "^4.1.0",
"express": "^4.19.2",
"helmet": "^7.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"libphonenumber-js": "^1.11.8",
"mongoose": "^8.6.3",
"rate-limiter-flexible": "^5.0.3",
"resend": "^4.0.0",
"source-map-support": "^0.5.21",
"ts-migrate-mongoose": "^3.8.3",
"uuid": "^10.0.0",
"winston": "^3.14.1",
"winston-mongodb": "^5.1.1"
}
}