-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.22 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.22 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": "dripfeed",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/main.ts",
"start": "node dist/main.js",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"db:generate": "drizzle-kit generate && tsx scripts/post-generate-migration.ts",
"db:migrate": "tsx scripts/migrate.ts",
"db:studio": "drizzle-kit studio",
"rollback": "tsx scripts/rollback.ts",
"inspect:splits": "tsx scripts/inspect-splits.ts",
"inspect:projects": "tsx scripts/inspect-projects.ts",
"inspect:drip-lists": "tsx scripts/inspect-drip-lists.ts",
"inspect:db": "tsx scripts/inspect-db.ts",
"inspect:orphans": "tsx scripts/inspect-orphans.ts",
"inspect:account-history": "tsx scripts/inspect-account-history.ts",
"compare-dbs": "tsx scripts/compare-databases.ts",
"monitor": "tsx scripts/monitor-progress.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/node": "^24.5.2",
"@types/pg": "^8.15.5",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitest/ui": "^3.2.4",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"typescript-eslint": "^8.45.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@efstajas/versioned-parser": "^0.1.4",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.66.0",
"@opentelemetry/exporter-metrics-otlp-proto": "^0.207.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.207.0",
"@opentelemetry/sdk-node": "^0.207.0",
"dotenv": "^17.2.3",
"dotenv-expand": "^12.0.3",
"drizzle-kit": "^0.31.5",
"drizzle-orm": "^0.44.6",
"drizzle-zod": "^0.8.3",
"pg": "^8.16.3",
"viem": "^2.37.9",
"zod": "^4.1.11"
}
}