-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "next-boilerplate",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier src/ --write",
"lint": "next lint",
"start": "next start",
"db:migrate": "cross-env DB_MIGRATING=true drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:push": "drizzle-kit push"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.5.0",
"@nextui-org/react": "^2.4.8",
"@t3-oss/env-nextjs": "^0.11.1",
"@tabler/icons-react": "^3.17.0",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"drizzle-orm": "^0.33.0",
"framer-motion": "^11.5.4",
"next": "14.2.12",
"next-auth": "^4.24.7",
"next-themes": "^0.3.0",
"postgres": "^3.4.4",
"react": "^18",
"react-dom": "^18",
"zod": "^3.23.8"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.24.2",
"eslint": "^8",
"eslint-config-next": "14.2.12",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-n": "^17.10.2",
"postcss": "^8",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}