-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.5 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": "build-canada",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.5.0",
"scripts": {
"dev": "next dev -p 5050",
"dev:remote": "YORK_FACTORY_API_URL=https://yorkfactory.buildcanada.com/api/v1 next dev -p 5050",
"build": "next build",
"start": "next start -p 5050",
"lint": "eslint && npm run lint:tokens",
"lint:tokens": "rg --glob '*.tsx' --glob '*.ts' --glob '!*.d.ts' -e '[a-z]+-\\[var\\(--' src/ && echo 'FAIL: inline CSS vars in Tailwind found' && exit 1 || echo 'OK: no inline CSS vars'",
"seed:bills-admin": "tsx scripts/seed-bills-admin.ts",
"eval:bills": "tsx --env-file-if-exists=.env.local --env-file-if-exists=.env src/app/bills/evals/run.ts"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@buildcanada/charts": "^0.3.9",
"@buildcanada/colours": "^0.3.3",
"@buildcanada/components": "^0.3.5",
"@cloudflare/stream-react": "^1.9.3",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"@react-three/rapier": "^2.2.0",
"chart.js": "^4.4.7",
"chartjs-adapter-date-fns": "^3.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.18",
"fast-xml-parser": "^5.3.8",
"jose": "^5.9.6",
"lucide-react": "^1.7.0",
"meshline": "^3.3.1",
"mongoose": "^8.18.0",
"next": "16.1.6",
"next-auth": "4.24.13",
"next-themes": "^0.4.6",
"openai": "^5.15.0",
"posthog-js": "^1.368.0",
"posthog-node": "^5.35.11",
"react": "19.2.3",
"react-chartjs-2": "^5.3.0",
"react-dom": "19.2.3",
"react-hook-form": "^7.62.0",
"react-markdown": "^10.1.0",
"rehype-parse": "^9.0.1",
"rehype-remark": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-stringify": "^11.0.0",
"schema-dts": "^2.0.0",
"sonner": "^2.0.7",
"swr": "^2.3.8",
"tailwind-merge": "^3.5.0",
"three": "^0.185.1",
"tw-animate-css": "^1.4.0",
"unified": "^11.0.5",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/hast": "^3.0.5",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.185.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}