-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 843 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 843 Bytes
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx esbuild src/index.ts --bundle --platform=node --target=node18 --minify --packages=external --outfile=dist/index.js",
"start": "node dist/index.js",
"dev": "tsx --watch ./src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-rate-limit": "^8.5.2",
"helmet": "^8.1.0",
"rate-limit-redis": "^5.0.0",
"redis": "^5.8.3"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/morgan": "^1.9.10",
"@types/node": "^24.5.1",
"@types/qrcode": "^1.5.5",
"@types/redis": "^4.0.10",
"esbuild": "^0.28.1",
"morgan": "^1.10.1",
"qrcode": "^1.5.4",
"tsx": "^4.23.1"
}
}