-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.2 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
{
"name": "canon-policy-intelligence",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1 --port 3000",
"dev:api": "python3 -m uvicorn api.main:app --reload --host 127.0.0.1 --port 8000",
"build:index": "python3 -m api.build_search_index",
"build:web": "tsc -b && vite build",
"build:vercel": "pnpm run build:index && pnpm run build:web",
"build": "pnpm run build:web",
"preview": "vite preview --host 127.0.0.1 --port 3000"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.3",
"@tanstack/react-query": "^5.85.6",
"@tanstack/react-router": "^1.130.12",
"@tanstack/react-start": "^1.130.12",
"@tanstack/router-plugin": "^1.130.12",
"@vitejs/plugin-react": "^5.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.542.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"recharts": "^3.1.2",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.12",
"vite": "^7.1.3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.12",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"typescript": "^5.9.2"
}
}