forked from BuildCanada/CanadaSpends
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.81 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.81 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "canadaspends",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "pnpm extract && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "node -e \"if (!process.env.CI) { require('child_process').execSync('npx simple-git-hooks', {stdio: 'inherit'}) }\"",
"extract": "lingui extract --clean"
},
"dependencies": {
"@beehiiv/sdk": "^0.1.6",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@formatjs/intl-localematcher": "^0.5.0",
"@lingui/core": "^5.1.2",
"@lingui/macro": "^5.2.0",
"@lingui/react": "^5.1.2",
"@mui/icons-material": "^7.0.2",
"@mui/material": "^7.0.2",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-hover-card": "^1.1.6",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@tailwindcss/forms": "^0.5.10",
"@vercel/analytics": "^1.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"d3": "^7.9.0",
"d3-array": "^3.2.4",
"d3-format": "^3.1.0",
"d3-hierarchy": "^3.1.2",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"lucide-react": "^0.483.0",
"negotiator": "^0.6.3",
"next": "15.2.1",
"papaparse": "^5.5.2",
"posthog-js": "^1.234.4",
"posthog-node": "^4.10.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"react-instantsearch": "^7.15.4",
"react-instantsearch-hooks-web": "^6.47.3",
"react-select": "^5.10.1",
"recharts": "^2.15.1",
"sonner": "^2.0.3",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.2.4",
"typesense-instantsearch-adapter": "^2.8.0",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@lingui/cli": "^5.1.2",
"@lingui/loader": "^5.1.2",
"@lingui/swc-plugin": "^5.0.1",
"@tailwindcss/postcss": "^4",
"@types/d3": "^7.4.3",
"@types/d3-format": "^3.0.4",
"@types/negotiator": "^0.6.3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.30.1",
"eslint-config-next": "15.3.5",
"lint-staged": "^16.1.2",
"simple-git-hooks": "^2.13.0",
"tailwindcss": "^4",
"tsx": "^4.19.3",
"typescript": "^5"
},
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}