-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.29 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.29 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
{
"name": "build-canada-outcome-tracker",
"repository": "https://github.com/BuildCanada/template",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev --port 4444",
"turbo": "next dev --turbo --port 4444",
"build": "next build",
"start": "next start -p 4444",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"prepare": "node -e \"if (!process.env.CI) { require('child_process').execSync('npx simple-git-hooks', {stdio: 'inherit'}) }\"",
"knip": "knip"
},
"dependencies": {
"@radix-ui/react-avatar": "1.1.2",
"@radix-ui/react-dialog": "1.1.4",
"@radix-ui/react-popover": "1.1.4",
"@radix-ui/react-select": "2.1.4",
"@radix-ui/react-slot": "1.1.1",
"@radix-ui/react-toast": "1.2.4",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.56.0",
"autoprefixer": "^10.4.20",
"chart.js": "^4.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.454.0",
"next": "15.2.4",
"react": "^18.2.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.15.18",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/browser": "^3.1.4",
"eslint": "^9.30.1",
"eslint-config-next": "^15.3.5",
"eslint-config-prettier": "^10.1.8",
"jsdom": "^26.1.0",
"knip": "^5.62.0",
"lint-staged": "^16.1.2",
"postcss": "^8",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.4"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"next lint --file"
],
"**/*.{ts,tsx,js,jsx,json,css,md}": [
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}