-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.53 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.53 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
{
"name": "plckr.dev",
"version": "1.4.1",
"private": true,
"type": "module",
"scripts": {
"vite:dev": "vite dev --port 3000",
"dev": "npm-run-all --parallel vite:dev velite:watch",
"start": "node dist/server/index.js",
"prebuild": "pnpm run validate",
"build": "vite build",
"serve": "vite preview",
"deploy": "wrangler deploy",
"test": "vitest run",
"lint": "eslint",
"check-types": "tsc --noEmit",
"validate": "pnpm run velite:build && pnpm run prettier:check && pnpm run check-types",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"velite": "velite dev",
"velite:watch": "velite dev --watch",
"velite:build": "velite build",
"prepare": "husky",
"release": "changeset publish",
"changeset": "changeset",
"supabase:types": "supabase gen types --lang typescript --local > src/lib/supabase.server/types.d.ts && prettier --write src/lib/supabase.server/types.d.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@shikijs/transformers": "^3.13.0",
"@supabase/supabase-js": "^2.74.0",
"@tailwindcss/vite": "^4.1.13",
"@tanstack/react-devtools": "^0.7.8",
"@tanstack/react-query": "^5.90.5",
"@tanstack/react-router": "^1.133.32",
"@tanstack/react-router-devtools": "^1.133.32",
"@tanstack/react-router-ssr-query": "^1.133.33",
"@tanstack/react-start": "^1.133.32",
"@tanstack/router-plugin": "^1.133.32",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"feed": "^5.1.0",
"lucide-react": "^0.476.0",
"posthog-js": "^1.268.8",
"prettier-plugin-tailwindcss": "^0.6.14",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0",
"react-medium-image-zoom": "^5.4.0",
"shiki": "^3.13.0",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.1.13",
"tw-animate-css": "^1.3.6",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^4.1.12"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@chromatic-com/storybook": "^4.1.1",
"@cloudflare/vite-plugin": "^1.13.8",
"@storybook/addon-a11y": "^9.1.15",
"@storybook/addon-docs": "^9.1.15",
"@storybook/addon-themes": "^9.1.15",
"@storybook/addon-vitest": "^9.1.15",
"@storybook/react-vite": "^9.1.15",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/devtools-vite": "^0.3.10",
"@tanstack/eslint-config": "^0.3.2",
"@tanstack/react-query-devtools": "^5.90.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^24.9.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "3.2.4",
"eslint-plugin-storybook": "^9.1.15",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.56.1",
"prettier": "^3.5.3",
"shadcn": "^3.3.1",
"storybook": "^9.1.15",
"supabase": "^2.51.0",
"typescript": "^5.9.3",
"velite": "^0.3.0",
"vite": "^7.1.12",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^3.2.4",
"web-vitals": "^4.2.4",
"wrangler": "^4.40.3"
},
"engines": {
"node": "22"
}
}