-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.45 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.45 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
{
"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'"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@cloudflare/stream-react": "^1.9.3",
"@radix-ui/react-select": "^2.2.5",
"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",
"lucide-react": "^1.7.0",
"next": "16.1.6",
"posthog-js": "^1.368.0",
"react": "19.2.3",
"react-chartjs-2": "^5.3.0",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"schema-dts": "^2.0.0",
"sonner": "^2.0.7",
"swr": "^2.3.8",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}