-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.93 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.93 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
{
"name": "express-ts-feature-based",
"version": "2.3.0",
"main": "server.js",
"scripts": {
"dev": "nodemon --ext ts --exec ts-node src/server.ts",
"start": "node dist/server.js",
"db:seed": "ts-node knex seed:run",
"db:migrate": "ts-node knex migrate:latest",
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"prepare": "husky",
"release": "standard-version"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"axios": "^1.8.4",
"bcrypt": "^5.1.1",
"bullmq": "^5.55.0",
"compression": "^1.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"ioredis": "^5.6.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.2",
"mysql2": "^3.12.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.10.1",
"pg": "^8.16.3",
"stripe": "^18.3.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/hpp": "^0.2.6",
"@types/jsonwebtoken": "^9.0.9",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.13.1",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.17",
"@types/stripe": "^8.0.416",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}