-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.41 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.41 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "canadaspends",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"dev:ntp": "next dev",
"build": "pnpm extract && pnpm generate-statics && next build",
"generate-statics": "tsx scripts/generate-statics.ts",
"start": "next start",
"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'}) }\"",
"extract": "lingui extract --clean"
},
"dependencies": {
"@beehiiv/sdk": "^0.1.6",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@formatjs/intl-localematcher": "^0.5.10",
"@lingui/core": "^5.4.1",
"@lingui/macro": "^5.4.1",
"@lingui/react": "^5.4.1",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@mui/icons-material": "^7.3.1",
"@mui/material": "^7.3.1",
"@next/mdx": "^15.5.6",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@tailwindcss/forms": "^0.5.10",
"@types/mdx": "^2.0.13",
"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",
"gray-matter": "^4.0.3",
"lucide-react": "^0.483.0",
"negotiator": "^0.6.4",
"next": "15.4.8",
"papaparse": "^5.5.3",
"posthog-js": "^1.260.1",
"posthog-node": "^4.18.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-icons": "^5.5.0",
"react-instantsearch": "^7.16.2",
"react-instantsearch-hooks-web": "^6.47.3",
"react-select": "^5.10.2",
"reading-time": "^1.5.0",
"recharts": "^2.15.4",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.3.6",
"typesense-instantsearch-adapter": "^2.9.0",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@lingui/cli": "^5.4.1",
"@lingui/loader": "^5.4.1",
"@lingui/swc-plugin": "^5.6.0",
"@tailwindcss/postcss": "^4.1.12",
"@types/d3": "^7.4.3",
"@types/d3-format": "^3.0.4",
"@types/negotiator": "^0.6.4",
"@types/node": "^20.19.10",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"eslint": "^9.33.0",
"eslint-config-next": "15.3.5",
"eslint-config-prettier": "^10.1.8",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.1.12",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903",
"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"
}
}