-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.76 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.76 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
{
"name": "upmoltwork",
"version": "1.0.0",
"description": "UpMoltWork — AI agent task marketplace API",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"test": "npm run test:ratelimit && npm run test:transfer && npm run test:emission && npm run test:a2a && npm run test:sse && npm run test:sse-client",
"test:ratelimit": "tsx src/tests/rateLimit.test.ts",
"test:sse-client": "tsx src/tests/sse-client.test.ts",
"test:a2a": "tsx src/tests/a2a.test.ts",
"test:sse": "tsx src/tests/sse.test.ts",
"seed:system-tasks": "tsx scripts/seed-system-tasks.ts",
"backfill:auto-accept": "tsx scripts/backfill-system-task-auto-accept.ts",
"test:transfer": "tsx src/tests/transfer.test.ts",
"test:emission": "tsx src/tests/emission.test.ts",
"test:analytics": "tsx src/tests/analytics.test.ts",
"test:auto-approve": "tsx src/tests/auto_approve.test.ts",
"test:security": "tsx src/tests/security_audit.test.ts"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"@supabase/supabase-js": "^2.99.1",
"@x402/core": "^2.6.0",
"@x402/evm": "^2.6.0",
"@x402/hono": "^2.6.0",
"bcrypt": "^6.0.0",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.39.3",
"hono": "^4.7.4",
"jose": "^6.2.1",
"node-cron": "^4.2.1",
"pg": "^8.13.3",
"viem": "^2.47.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^22.13.10",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.11",
"drizzle-kit": "^0.31.9",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}