-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 KB
/
package.json
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
{
"name": "saw-that-band",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@next/third-parties": "^15.0.3",
"@nivo/bar": "^0.88.0",
"@nivo/bump": "^0.88.0",
"@nivo/core": "^0.88.0",
"@nivo/pie": "^0.88.0",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "latest",
"clsx": "^2.1.1",
"next": "latest",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-simple-maps": "^3.0.0",
"react-virtualized-auto-sizer": "^1.0.24",
"react-window": "^1.8.10",
"server-only": "^0.0.1",
"tailwind-merge": "^2.5.4",
"typescript": "5.6.3"
},
"devDependencies": {
"@types/node": "^22.9.1",
"@types/react": "^18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-simple-maps": "^3.0.4",
"@types/react-virtualized-auto-sizer": "^1.0.4",
"@types/react-window": "^1.8.8",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"postcss": "^8.4.38",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.14"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}