generated from w3cj/next-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 KB
/
package.json
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
{
"name": "next-starter",
"description": "A simple Next.js starter template with auth.",
"version": "0.3.0",
"author": {
"name": "Wayne Ritchie",
"email": "[email protected]",
"url": "https://writchie.dev"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"restart": "pnpm run build && pnpm run start",
"lint": "next lint",
"prettier:check": "prettier src/ --check",
"prettier:write": "prettier src/ --write",
"db:migrate": "cross-env DB_MIGRATING=true drizzle-kit migrate"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.7.4",
"@conform-to/react": "^1.2.2",
"@conform-to/zod": "^1.2.2",
"@nextui-org/react": "^2.6.8",
"@t3-oss/env-nextjs": "^0.11.1",
"@tabler/icons-react": "^3.24.0",
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.1",
"drizzle-orm": "^0.38.2",
"drizzle-zod": "^0.6.0",
"framer-motion": "^11.14.4",
"jiti": "^2.4.1",
"next": "^15.1.2",
"next-auth": "^4.24.11",
"next-themes": "^0.4.4",
"postgres": "^3.4.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.30.1",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-n": "^17.15.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2"
},
"license": "MIT",
"packageManager": "[email protected]"
}