-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.34 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.34 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
{
"name": "adi-simple",
"module": "index.ts",
"type": "module",
"private": true,
"packageManager": "npm@10.9.4",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "nx run-many -t dev --parallel 10 --output-style=stream",
"build": "nx run-many -t build",
"build:all": "nx run-many -t build && npm run worker:build:all",
"typecheck": "nx run-many -t typecheck",
"lint": "eslint .",
"lint:workspaces": "nx run-many -t lint",
"lint:fix": "eslint . --fix",
"hooks:install": "sh hooks/install.sh",
"db:reset": "sh scripts/reset-db.sh",
"worker:build": "npm run build --workspace=packages/worker",
"worker:build:all": "npm run build:all --workspace=packages/worker",
"worker:build:binary": "npm run build:binary --workspace=packages/worker",
"worker:clean": "npm run build:clean --workspace=packages/worker"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@tailwindcss/cli": "^4.1.14",
"@types/amqplib": "^0.10.7",
"@types/bun": "latest",
"@types/express": "^5.0.5",
"@types/node": "^24.7.1",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"nx": "22.0.2",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.14",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.7"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.12",
"@anthropic-ai/sdk": "^0.67.0",
"@clerk/backend": "^2.19.2",
"@clerk/clerk-react": "^5.53.2",
"@gitbeaker/rest": "^43.5.0",
"@google/gemini-cli": "^0.8.2",
"@openai/codex-sdk": "^0.46.0",
"@tailwindcss/vite": "^4.1.14",
"amqplib": "^0.10.9",
"chalk": "^5.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"lucide-react": "^0.546.0",
"postgres": "^3.4.7",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.9.4",
"simple-icons": "^15.16.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^4.1.12"
}
}