-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.06 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.06 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
82
83
84
85
86
87
88
89
90
91
{
"name": "blocky-ui",
"version": "1.6.1",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"db:studio": "bun run db:studio:mysql",
"db:studio:mysql": "NODE_ENV=development drizzle-kit studio --config=drizzle.config.mysql.ts",
"db:studio:pg": "NODE_ENV=development drizzle-kit studio --config=drizzle.config.postgresql.ts",
"dev": "next dev --turbo",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "next build && next start",
"start": "next start",
"typecheck": "tsc --noEmit",
"changeset": "bunx @changesets/cli",
"verify": "bun run --parallel lint format:check typecheck",
"generate:csv": "bunx tsx scripts/generate_querylog_csv.ts --output ./generated-logs --rows 10000 --days 1",
"generate:csv-client": "bunx tsx scripts/generate_querylog_csv.ts --output ./generated-logs --rows 10000 --days 1 --type csv-client --clients 5",
"knip": "SKIP_ENV_VALIDATION=true knip",
"checkdupe": "jscpd",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@t3-oss/env-nextjs": "^0.13.11",
"@tanstack/react-query": "^5.96.2",
"@tanstack/react-table": "^8.21.3",
"@trpc/client": "^11.16.0",
"@trpc/react-query": "^11.16.0",
"@trpc/server": "^11.16.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.2",
"ky": "^2.0.0",
"lucide-react": "^1.7.0",
"mysql2": "^3.20.0",
"next": "16.2.2",
"postgres": "^3.4.9",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"recharts": "3.8.1",
"sonner": "^2.0.7",
"superjson": "^2.2.6",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@faker-js/faker": "^10.4.0",
"@tailwindcss/postcss": "^4.2.2",
"@tanstack/react-query-devtools": "^5.96.2",
"@testcontainers/mysql": "^11.13.0",
"@testcontainers/postgresql": "^11.13.0",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.2",
"eslint-plugin-drizzle": "^0.2.3",
"jscpd": "^4.0.8",
"knip": "^6.3.0",
"msw": "^2.13.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"ct3aMetadata": {
"initVersion": "7.39.3"
},
"packageManager": "bun@1.3.9"
}