-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.86 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
{
"name": "streampay-backend",
"version": "0.1.0",
"description": "StreamPay API — stream management, metering, and settlement",
"keywords": [
"streampay",
"stellar",
"payments",
"streaming",
"metering",
"settlement",
"drizzle",
"express",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Streampay-Org/StreamPay-Backend.git"
},
"bugs": {
"url": "https://github.com/Streampay-Org/StreamPay-Backend/issues"
},
"homepage": "https://github.com/Streampay-Org/StreamPay-Backend#readme",
"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.4.2",
"drizzle-orm": "^0.45.2",
"express": "^4.21.0",
"express-rate-limit": "^8.5.2",
"jsonwebtoken": "^9.0.3",
"pg": "^8.22.0",
"prom-client": "^15.1.3",
"redis": "^6.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^26.0.1",
"@types/pg": "^8.20.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"drizzle-kit": "^0.31.10",
"eslint": "^10.6.0",
"jest": "^30.4.2",
"supertest": "^7.0.0",
"ts-jest": "^29.4.11",
"ts-node-dev": "^2.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0"
}
}