-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.55 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.55 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
{
"name": "writbase",
"version": "0.1.3",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:edge": "deno test supabase/functions/_shared/ supabase/functions/mcp-server/ --allow-env --allow-read --config supabase/functions/mcp-server/deno.json",
"format": "biome format --write src/",
"format:check": "biome ci src/",
"lint:deno": "deno lint supabase/functions/",
"gen:types": "supabase gen types typescript --local > src/lib/types/database.ts",
"prepare": "lefthook install"
},
"dependencies": {
"@sentry/nextjs": "^10.43.0",
"@supabase/ssr": "^0.9.0",
"@supabase/supabase-js": "^2.99.1",
"next": "16.1.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"sonner": "^2.0.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@tailwindcss/postcss": "^4.2.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.4.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.4",
"eslint-config-biome": "^2.1.3",
"eslint-config-next": "16.1.6",
"jsdom": "^28.1.0",
"lefthook": "2.1.3",
"supabase": "^2.78.1",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.0.18"
}
}