-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.67 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
{
"name": "f3-database-compare-tool",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3002",
"build": "next build",
"start": "next start --port 3002",
"lint": "eslint . --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"db:up": "docker compose up -d",
"db:down": "docker compose down",
"db:reset:local": "tsx scripts/db-reset.ts local",
"db:reset:neon": "tsx scripts/db-reset.ts neon",
"db:reset:supabase": "tsx scripts/db-reset.ts supabase",
"db:pull:schema": "tsx scripts/db-pull-schema.ts",
"db:pull:dump": "tsx scripts/db-pull-dump.ts",
"db:migrate:local": "bash scripts/db-migrate.sh local",
"db:migrate:neon": "bash scripts/db-migrate.sh neon",
"db:migrate:supabase": "bash scripts/db-migrate.sh supabase",
"db:seed:local": "bash scripts/db-seed.sh local",
"db:seed:neon": "bash scripts/db-seed.sh neon",
"db:seed:supabase": "bash scripts/db-seed.sh supabase",
"db:verify:local": "tsx scripts/db-verify.ts local",
"db:verify:neon": "tsx scripts/db-verify.ts neon",
"db:verify:supabase": "tsx scripts/db-verify.ts supabase",
"db:verify:gcp": "tsx scripts/db-verify.ts gcp",
"db:sync:local": "tsx scripts/db-sync.ts local",
"db:sync:neon": "tsx scripts/db-sync.ts neon",
"db:sync:supabase": "tsx scripts/db-sync.ts supabase",
"db:sync:all": "tsx scripts/db-sync.ts all",
"firebase:env": "bash scripts/firebase-env.sh",
"db:generate": "drizzle-kit generate",
"db:migrate:metadata": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.4",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.563.0",
"next": "16.1.6",
"pg": "^8.18.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"recharts": "^3.7.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.0.18",
"drizzle-kit": "^0.31.8",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"prettier": "^3.8.1",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.0.18"
}
}