-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.72 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.72 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
{
"name": "woc-leaderboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"prepare": "husky",
"type": "module",
"lint": "biome lint --write --unsafe --files-ignore-unknown=true ./app",
"format": "biome format --write --files-ignore-unknown=true ./app",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,jsonc,css,scss,html}": [
"biome check --write --files-ignore-unknown=true --no-errors-on-unmatched ./app"
]
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.14",
"@radix-ui/react-tooltip": "^1.2.7",
"@shadcn/ui": "^0.0.4",
"@tailwindcss/typography": "^0.5.16",
"@types/marked": "^6.0.0",
"ajv": "^8.17.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^9.29.0",
"framer-motion": "^11.18.2",
"lint-staged": "^15.5.2",
"lucide-react": "^0.460.0",
"marked": "^15.0.12",
"next": "^15.3.4",
"next-auth": "^4.24.11",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-secure-storage": "^1.3.2",
"react-snowfall": "^2.4.0",
"react-syntax-highlighter": "^15.6.1",
"recharts": "^2.15.3",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.25.67",
"zustand": "^5.0.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@storybook/addon-essentials": "8.6.12",
"@storybook/addon-interactions": "8.6.12",
"@storybook/addon-onboarding": "8.6.12",
"@storybook/blocks": "8.6.12",
"@storybook/nextjs": "8.6.12",
"@storybook/react": "8.6.12",
"@storybook/test": "8.6.12",
"@tailwindcss/postcss": "^4.1.10",
"@types/node": "^20.19.1",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/react-icons": "^3.0.0",
"@types/recharts": "^1.8.29",
"eslint-config-next": "^15.3.4",
"eslint-plugin-storybook": "^0.12.0",
"husky": "^9.1.7",
"node-gyp-build": "^4.8.4",
"postcss": "^8.5.6",
"storybook": "8.6.12",
"tailwindcss": "^4.1.10",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@10.12.1"
}