-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "streampay-backend",
"version": "0.1.0",
"description": "StreamPay API — stream management, metering, and settlement",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn src/index.ts",
"test": "jest",
"lint": "eslint src --ext .ts",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.5.0",
"cors": "^2.8.5",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"express": "^4.21.0",
"express-rate-limit": "^8.3.1",
"pg": "^8.20.0",
"prom-client": "^15.1.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.0.0",
"@types/pg": "^8.20.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.57.2"
}
}