-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.84 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
{
"name": "dmbs_project",
"version": "1.0.0",
"description": "Real-time bidding and ride matching backend for DBMS project",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"typecheck": "tsc --noEmit",
"test": "jest",
"db:migrate": "tsx src/scripts/migrate.ts",
"db:seed": "tsx src/scripts/seed.ts",
"db:setup": "npm run db:migrate && npm run db:seed",
"worker:match": "tsx src/workers/matching-worker.ts",
"worker:close-auctions": "tsx src/workers/auction-closer.ts",
"worker:refresh-hotzones": "tsx src/workers/hotzone-refresh.ts",
"demo:bid-race": "tsx scripts/demo-bid-race.ts",
"demo:driver-herd": "tsx scripts/demo-driver-herd.ts",
"demo:retract": "tsx scripts/demo-auction-retraction.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"helmet": "^8.2.0",
"jsonwebtoken": "^9.0.3",
"pg": "^8.20.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"redis": "^5.12.1",
"socket.io": "^4.8.3",
"swagger-jsdoc": "^6.3.0",
"swagger-ui-express": "^5.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"@types/supertest": "^7.2.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"eslint": "^10.2.0",
"jest": "^30.4.2",
"pino-pretty": "^13.1.3",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}