-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.74 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
73
74
75
76
77
78
{
"name": "digarr",
"version": "1.15.0",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run --hot src/index.ts",
"dev:web": "vite",
"build": "vite build && bun build src/index.ts --outdir dist/server --target bun --external @electric-sql/pglite && bun build scripts/rotate-encryption-key.ts --outfile dist/scripts/rotate-encryption-key.js --target bun --external @electric-sql/pglite && bun build scripts/prepare-rollback-backup.ts --outfile dist/scripts/prepare-rollback-backup.js --target bun --external @electric-sql/pglite",
"start": "bun dist/server/index.js",
"i18n:check": "bun scripts/i18n-check.ts",
"check:docker-identity": "./scripts/check-docker-identity.sh",
"check:versions": "bun scripts/check-version-drift.ts",
"check:api-docs": "bun scripts/check-api-docs.ts",
"i18n:translate": "bun scripts/i18n-machine-translate.ts",
"test": "vitest run",
"test:api-routes": "vitest run tests/api-routes/",
"test:coverage": "vitest run --coverage --maxWorkers=4",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:a11y": "playwright test --config=playwright.a11y.config.ts"
},
"overrides": {
"esbuild": "^0.28.0",
"picomatch": "^4.0.4",
"playwright-core": "^1.62.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@biomejs/biome": "^2.5.6",
"@playwright/test": "^1.62.0",
"@tailwindcss/vite": "^4.3.3",
"@tanstack/react-query": "^5.101.4",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.14",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-kit": "^0.31.10",
"jsdom": "^30.0.0",
"lucide-react": "^1.27.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-router-dom": "^7.18.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.115.0",
"@electric-sql/pglite": "0.5.4",
"@hono/node-server": "^2.0.12",
"@hono/zod-validator": "^0.9.0",
"croner": "^10.0.1",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.32",
"openai": "^6.49.0",
"openid-client": "^6.8.4",
"p-queue": "^9.3.3",
"p-retry": "^8.0.0",
"pg": "^8.22.0",
"zod": "^4.4.3"
}
}