-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.75 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.75 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
87
88
89
90
91
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"start": "node -r tsconfig-paths/register dist/src/server.js",
"nodemon": "nodemon",
"dev": "nodemon",
"build": "tsc && node copy-assets.js",
"debug": "ndb nodemon",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint-staged": "lint-staged",
"format": "prettier --write .",
"vercel-build": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@payos/node": "^1.0.10",
"@radix-ui/react-select": "^2.1.6",
"@types/socket.io": "^3.0.1",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.5.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"http-errors": "^2.0.0",
"ioredis": "^5.4.2",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"moment": "^2.30.1",
"mongoose": "^8.9.5",
"morgan": "^1.10.0",
"multer": "^2.0.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.16",
"nodemon": "^3.1.9",
"socket.io": "^4.8.1",
"stripe": "^17.6.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/multer": "^1.4.13",
"@types/node": "^22.10.7",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.17",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"copyfiles": "^2.4.1",
"eslint": "^8.50.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rimraf": "^5.0.4",
"ts-loader": "^9.5.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"npm run format"
]
},
"_moduleAliases": {
"@": "src"
}
}