-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.26 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.26 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
79
80
81
{
"name": "x-ray",
"version": "1.9.7",
"description": "Twitter tech content monitoring system",
"type": "module",
"scripts": {
"dev": "vinext dev --port 7007",
"build": "vinext build",
"start": "vinext start --port 7007",
"lint": "eslint --max-warnings=0",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e:api": "bun run scripts/run-e2e-api.ts",
"test:e2e:browser": "npx playwright test",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"prepare": "husky",
"release": "bun run scripts/release.ts",
"watchlist": "bun run scripts/manage-watchlist.ts",
"xray-me": "bun run scripts/run-me-report.ts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4.2.2",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.12",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.5",
"drizzle-kit": "^0.31.10",
"eslint": "^10.2.0",
"husky": "^9.1.7",
"shadcn": "^3.8.5",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1",
"vite": "^7.3.2",
"vitest": "^4.1.5"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.69",
"@ai-sdk/openai": "^3.0.52",
"@radix-ui/react-collapsible": "^1.1.12",
"ai": "^6.0.158",
"better-sqlite3": "^12.8.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.18",
"ip-address": "^10.2.0",
"lucide-react": "^0.577.0",
"next-auth": "^5.0.0-beta.30",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"recharts": "^3.8.1",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"vinext": "^0.0.21"
},
"trustedDependencies": [
"better-sqlite3"
],
"overrides": {
"@vitejs/plugin-rsc": ">=0.5.26",
"fast-uri": ">=3.1.2",
"hono": ">=4.12.16",
"ip-address": ">=10.1.1",
"next": ">=16.2.6",
"postcss": ">=8.5.10",
"react-server-dom-webpack": ">=19.2.6"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings=0"
]
}
}