-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.3 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 4.3 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "json4u",
"version": "3.7.3",
"type": "module",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev",
"build": "next build",
"start": "next start",
"preview": "next build && next start",
"e2e": "npx playwright test",
"e2e:ui": "npx playwright test --ui",
"e2e:gen": "playwright codegen -o e2e/foo.spec.ts http://localhost:3000",
"test": "vitest",
"bench": "vitest bench",
"format": "prettier . --write",
"lint": "pnpm tsc --noEmit && next lint && prettier . --check",
"analyze": "ANALYZE=true next build",
"unused": "npx knip",
"cycle": "npx madge --circular --extensions ts ./",
"gentypes": "source .env && supabase gen types typescript --project-id $SUPABASE_PROJECT_ID > src/lib/supabase/database.types.ts",
"lighthouse": "lighthouse --view http://localhost:3000"
},
"dependencies": {
"@biowasm/aioli": "^3.2.0",
"@hookform/resolvers": "^3.9.0",
"@lemonsqueezy/lemonsqueezy.js": "^3.3.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@monaco-editor/react": "^4.7.0",
"@next/mdx": "^14.2.6",
"@next/third-parties": "^14.2.13",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@sentry/nextjs": "^8.26.0",
"@sentry/react": "^8.26.0",
"@sentry/utils": "^8.27.0",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.45.3",
"@t3-oss/env-nextjs": "^0.11.1",
"@tanstack/react-virtual": "^3.10.8",
"@xyflow/react": "^12.8.6",
"@xyflow/system": "^0.0.43",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"comlink": "^4.4.1",
"compare-versions": "^6.1.1",
"debounce-promise": "^3.1.2",
"fuzzysort": "^3.1.0",
"github-markdown-css": "^5.6.1",
"idb-keyval": "^6.2.1",
"input-otp": "^1.2.4",
"js-cookie": "^3.0.5",
"jsonc-parser": "^3.3.1",
"jsonpath-plus": "^10.2.0",
"lodash-es": "^4.17.21",
"lucide-react": "^0.390.0",
"next": "^14.2.30",
"next-client-cookies": "^2.0.0",
"next-intl": "^3.25.3",
"next-themes": "^0.3.0",
"papaparse": "^5.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-drag-drop-files": "^2.3.10",
"react-hook-form": "^7.53.0",
"react-resizable-panels": "^2.1.1",
"sharp": "^0.33.5",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.0",
"zod": "^3.23.8",
"zustand": "^5.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@hcaptcha/types": "^1.0.4",
"@next/bundle-analyzer": "^14.2.6",
"@playwright/test": "^1.48.2",
"@testing-library/react": "^16.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/debounce-promise": "^3.1.9",
"@types/js-cookie": "^3.0.6",
"@types/lodash-es": "^4.17.12",
"@types/mdx": "^2.0.13",
"@types/node": "^20.16.1",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@vitejs/plugin-react": "^4.3.1",
"ahooks": "^3.8.4",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.3",
"happy-dom": "^14.12.3",
"jiti": "^1.21.6",
"monaco-editor": "^0.52.2",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.1",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.10",
"type-fest": "^4.26.1",
"typescript": "^5.5.4",
"unplugin-auto-import": "^0.18.2",
"vite": "^5.4.8",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.5"
},
"packageManager": "pnpm@10.14.0"
}