-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.44 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
92
93
94
95
{
"name": "tasks",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "tsx scripts/dev.ts",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"check": "pnpm lint && pnpm format:check && pnpm typecheck",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:seed": "tsx scripts/seed.ts",
"db:studio": "drizzle-kit studio",
"predb:reset": "node -e \"if(process.env.NODE_ENV==='production'){process.stderr.write('\\x1b[31mERROR: db:reset is disabled in production! Please do not delete the database in production!\\x1b[0m\\n');process.exit(1)}\"",
"db:reset": "rm -f db/tasks.db && pnpm db:migrate && pnpm db:seed",
"setup": "pnpm db:migrate && pnpm db:seed",
"staging": "bash scripts/stage.sh",
"deploy": "bash scripts/deploy.sh",
"auth:generate": "pnpm dlx @better-auth/cli@latest generate --config src/lib/auth/auth.ts --output src/lib/db/auth-schema.ts -y",
"reconcile": "tsx scripts/reconcile.ts",
"docs:dev": "npx -y trickfire-docs@latest dev",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css,mdx}": "prettier --write"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.5.7",
"@octokit/app": "^16.1.1",
"@octokit/webhooks": "^14.1.4",
"@primer/octicons-react": "^19.19.0",
"@radix-ui/react-slot": "^1.3.3",
"@sentry/nextjs": "^10.69.0",
"better-auth": "^1.6.25",
"better-sqlite3": "^12.11.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"drizzle-orm": "^0.45.2",
"fractional-indexing": "^3.2.0",
"lru-cache": "^11.5.1",
"lucide-react": "^1.28.0",
"next": "16.2.12",
"next-themes": "^0.4.6",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-hook-form": "^7.83.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^26",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.9",
"@vitest/ui": "^4.1.9",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.12",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"msw": "^2.7.3",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.0",
"shadcn": "^4.16.0",
"tailwindcss": "^4",
"tsx": "^4.22.4",
"typescript": "^6",
"vitest": "^4.1.9"
}
}