-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"name": "gramma",
"type": "module",
"version": "0.0.1",
"devEngines": {
"runtime": {
"name": "node",
"version": "24.x",
"onFail": "download"
},
"packageManager": {
"name": "pnpm",
"version": "12.0.0",
"onFail": "download"
}
},
"engines": {
"node": ">=24",
"pnpm": ">=11"
},
"scripts": {
"dev": "pnpm run --filter=web dev",
"setup-db": "pnpm run migrate && pnpm run seed",
"reset-db": "supabase db reset && pnpm run setup-db",
"test": "vitest run --exclude '**/tests/integration/**'",
"test:integration": "vitest run integration",
"test:e2e": "pnpm exec playwright test",
"check": "biome check .",
"format": "biome format . --write",
"lint": "biome lint .",
"lint:fix": "biome lint . --fix",
"knip": "knip",
"migrate": "drizzle-kit migrate",
"generate-migration": "drizzle-kit generate",
"seed": "pnpm exec tsx packages/db/seed.ts",
"studio": "drizzle-kit studio"
},
"dependencies": {
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@playwright/test": "^1.58.2",
"@supabase/supabase-js": "catalog:",
"@tailwindcss/typography": "^0.5.19",
"@testcontainers/postgresql": "^12.1.0",
"@types/node": "^26.2.0",
"drizzle-kit": "^0.31.10",
"husky": "^9.1.7",
"knip": "^6.32.2",
"supabase": "^2.115.0",
"tailwindcss": "^4.2.1",
"tsx": "^4.23.12",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
}
}