-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.48 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
{
"name": "fullstack-starter",
"version": "0.1.0",
"private": true,
"description": "Opinionated fullstack starter for new client engagements. Next.js 15 + TS + Drizzle + Postgres + Auth.js + Tailwind. Clone, configure, deploy in 30 minutes.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"next": "15.5.15",
"react": "19.0.0",
"react-dom": "19.0.0",
"next-auth": "5.0.0-beta.25",
"@auth/drizzle-adapter": "1.7.4",
"drizzle-orm": "0.38.3",
"postgres": "3.4.5",
"dotenv": "16.4.7",
"zod": "3.24.1",
"clsx": "2.1.1",
"tailwind-merge": "2.6.0"
},
"devDependencies": {
"@types/node": "22.10.5",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "4.3.4",
"@eslint/eslintrc": "3.2.0",
"drizzle-kit": "0.30.1",
"eslint": "9.17.0",
"eslint-config-next": "15.5.15",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss": "4.2.4",
"@tailwindcss/postcss": "4.2.4",
"tsx": "4.19.2",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"engines": {
"node": ">=20.0.0"
}
}