-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.07 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.07 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
{
"name": "sweep",
"version": "0.1.0",
"description": "Multi-chain dust sweeper with DeFi routing",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/api/index.ts",
"dev:server": "tsx watch src/api/index.ts",
"dev:workers": "tsx watch src/workers.ts",
"build": "echo 'Using tsx - no build needed'",
"start": "tsx src/api/index.ts",
"workers": "tsx src/workers.ts",
"test": "vitest",
"test:run": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e",
"test:api": "vitest run tests/api",
"test:services": "vitest run tests/services",
"test:coverage": "vitest run --coverage",
"test:coverage:unit": "vitest run tests/unit --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest watch",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "NODE_ENV=development tsx scripts/seed.ts",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:reset": "docker compose down -v && docker compose up -d"
},
"dependencies": {
"@hono/node-server": "^1.13.0",
"@hono/zod-validator": "^0.4.0",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.98.4",
"bullmq": "^5.20.0",
"dotenv": "^16.4.0",
"drizzle-orm": "^0.33.0",
"ethers": "^6.16.0",
"hono": "^4.6.0",
"ioredis": "^5.4.0",
"permissionless": "^0.2.4",
"postgres": "^3.4.0",
"prom-client": "^15.1.3",
"siwe": "^2.3.0",
"viem": "2.19.8",
"vite": "^7.3.1",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/ui": "^4.0.17",
"drizzle-kit": "^1.0.0-beta.9-e89174b",
"eslint": "^9.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=20.0.0"
}
}