-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.7 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
{
"name": "openclaw-revenue-engine",
"version": "1.0.0",
"description": "Self-hosted revenue engine for OpenClaw agents",
"main": "dist/server.js",
"scripts": {
"lint": "eslint . --ext .ts",
"type-check": "tsc --noEmit",
"test": "jest",
"test:unit": "jest --testPathPattern=tests/unit",
"test:integration": "jest --testPathPattern=tests/integration",
"test:performance": "jest --testPathPattern=tests/performance",
"test:coverage": "jest --coverage",
"build": "tsc",
"prebuild": "npm run clean",
"clean": "rm -rf dist",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^8.5.2",
"helmet": "^7.1.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"pg": "^8.12.0",
"rate-limiter-flexible": "^11.1.0",
"stripe": "^16.0.0",
"winston": "^3.13.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^26.1.0",
"@types/pg": "^8.11.6",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.61.0",
"eslint": "^10.7.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^7.0.2"
},
"keywords": [
"revenue-engine",
"stripe",
"billing",
"metering",
"saas",
"multi-tenant",
"devops",
"typescript",
"nodejs"
],
"license": "MIT"
}