-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.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
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
{
"name": "build-canada-outcome-tracker",
"repository": "https://github.com/BuildCanada/OutcomeTracker",
"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'}) }\""
},
"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",
"autoprefixer": "^10.4.23",
"chart.js": "^4.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"firebase": "^11.10.0",
"lucide-react": "^0.454.0",
"next": "15.4.10",
"posthog-js": "^1.363.5",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.1",
"react-dom": "^18.3.1",
"swr": "^2.3.8",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^22.19.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/browser": "^3.2.4",
"daisyui": "^5.5.14",
"eslint": "^9.39.2",
"eslint-config-next": "^15.5.9",
"eslint-config-prettier": "^10.1.8",
"jsdom": "^26.1.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.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"
}
}