-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.77 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
{
"name": "oddish-frontend",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"dead-code": "knip",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"test:e2e": "playwright test",
"typecheck:e2e": "tsc -p e2e/tsconfig.json --noEmit"
},
"//": [
"All dependencies pinned to exact versions for supply-chain security. Upgrade via `pnpm up <pkg>@<version>` and commit the regenerated pnpm-lock.yaml. CI + Dockerfile use `pnpm install --frozen-lockfile` to reject drift.",
"ESLint 10 deferred until eslint-plugin-react releases an eslint@10-compatible version."
],
"dependencies": {
"@clerk/nextjs": "7.2.5",
"@lobehub/icons": "5.5.4",
"@opentelemetry/api": "1.9.1",
"@opentelemetry/auto-instrumentations-web": "0.63.0",
"@pierre/diffs": "1.1.18",
"@pydantic/logfire-browser": "0.15.1",
"@radix-ui/react-accordion": "1.2.12",
"@radix-ui/react-alert-dialog": "1.1.15",
"@radix-ui/react-avatar": "1.1.11",
"@radix-ui/react-checkbox": "1.3.3",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-label": "2.1.8",
"@radix-ui/react-popover": "1.1.15",
"@radix-ui/react-select": "2.2.6",
"@radix-ui/react-slot": "1.2.4",
"@radix-ui/react-tabs": "1.1.13",
"@radix-ui/react-tooltip": "1.2.8",
"@tanstack/react-virtual": "3.13.24",
"@vercel/analytics": "^2.0.1",
"@vercel/otel": "2.1.2",
"@vercel/speed-insights": "^2.0.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cmdk": "1.0.0",
"lucide-react": "1.9.0",
"mammoth": "1.12.0",
"next": "16.2.6",
"prism-react-renderer": "2.4.1",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-markdown": "10.1.0",
"react-resizable-panels": "2.1.7",
"recharts": "3.8.1",
"remark-breaks": "4.0.0",
"remark-gfm": "4.0.1",
"shiki": "4.0.2",
"smol-toml": "1.4.2",
"swr": "2.4.1",
"tailwind-merge": "3.5.0",
"tailwindcss-animate": "1.0.7",
"xlsx": "0.18.5"
},
"devDependencies": {
"@clerk/testing": "2.2.2",
"@eslint/js": "9.39.2",
"@playwright/test": "1.61.1",
"@tailwindcss/postcss": "4.2.4",
"@types/node": "22.19.5",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"eslint": "9.39.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"knip": "6.6.3",
"postcss": "8.5.10",
"prettier": "3.8.3",
"prettier-plugin-tailwindcss": "0.7.3",
"tailwindcss": "4.2.4",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0"
}
}