-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "crammr",
"private": true,
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit -p tsconfig.app.json",
"test": "vitest run",
"test:watch": "vitest",
"check": "run-s lint typecheck test",
"db:apply": "bun scripts/apply-migrations.ts",
"db:push": "supabase db push",
"prepare": "husky"
},
"dependencies": {
"@fontsource-variable/space-grotesk": "5.2.10",
"@supabase/supabase-js": "2.106.2",
"highlight.js": "11.11.1",
"lucide-react": "0.344.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-markdown": "10.1.0",
"rehype-highlight": "7.0.2",
"wouter": "3.10.0",
"zustand": "5.0.13"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@types/react": "18.3.29",
"@types/react-dom": "18.3.7",
"@vitejs/plugin-react": "4.7.0",
"eslint": "9.39.4",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.26",
"globals": "15.15.0",
"husky": "9.1.7",
"npm-run-all": "4.1.5",
"playwright": "1.60.0",
"typescript": "5.9.3",
"typescript-eslint": "8.60.0",
"vite": "5.4.21",
"vitest": "2.1.9"
}
}