-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 734 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 734 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
{
"name": "pi-proxy",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "tsc",
"start": "bun dist/index.js",
"docker:build": "GIT_COMMIT=$(git rev-parse --short HEAD) docker compose up --build"
},
"dependencies": {
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"helmet": "^8.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/morgan": "^1.9.10",
"@types/node": "^26.1.1",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
}
}