-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.41 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.41 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
{
"name": "vimgym",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "biome check .",
"lint:fix": "biome check . --fix",
"test": "vitest",
"test:run": "vitest run",
"tsc": "tsc -b",
"types:gen": "supabase gen types typescript --project-id npgygqytvyudcqzntvvo > src/types/database.ts",
"types:sync": "pnpm types:gen && pnpm tsc",
"postinstall": "lefthook install",
"deploy": "pnpm --filter vimsplain build && pnpm types:sync && pnpm lint && pnpm test:run && pnpm build",
"knip": "knip"
},
"dependencies": {
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.2",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.11",
"@number-flow/react": "^0.5.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@replit/codemirror-vim": "^6.3.0",
"@supabase/supabase-js": "^2.91.0",
"@tanstack/react-query": "^5.90.19",
"@uiw/codemirror-theme-tokyo-night-storm": "^4.25.4",
"@uiw/react-codemirror": "^4.25.4",
"@varlock/vite-integration": "^0.1.1",
"clsx": "^2.1.1",
"motion": "^12.28.1",
"nuqs": "^2.8.8",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwind-merge": "^3.4.0",
"varlock": "^0.1.5",
"vimsplain": "workspace:*",
"zod": "^4.3.6",
"zustand": "^5.0.10"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.9",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"babel-plugin-react-compiler": "^1.0.0",
"jsdom": "^27.4.0",
"knip": "^5.86.0",
"lefthook": "^2.0.16",
"supabase": "^2.75.0",
"tailwind-scrollbar": "^4.0.2",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.17"
},
"pnpm": {
"overrides": {
"esm-env": "npm:esm-env-runtime@^0.1.1"
},
"onlyBuiltDependencies": [
"supabase",
"lefthook"
]
}
}