-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.78 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
62
63
64
{
"name": "examples-next-app-dir-new",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"db:push": "drizzle-kit push:sqlite --config src/db/config.ts",
"db:studio": "drizzle-kit studio --config src/db/config.ts",
"dev": "next dev",
"format": "prettier --write . --list-different",
"start": "next start",
"lint": "eslint ."
},
"dependencies": {
"@auth/drizzle-adapter": "^1.1.0",
"@baselime/node-opentelemetry": "^0.5.5",
"@faker-js/faker": "^8.4.1",
"@radix-ui/themes": "^3.0.1",
"@simplewebauthn/browser": "^9.0.0",
"@simplewebauthn/server": "^9.0.0",
"@t3-oss/env-nextjs": "^0.10.1",
"@trpc/server": "11.0.0-rc.351",
"class-variance-authority": "^0.7.0",
"client-only": "^0.0.1",
"consola": "^3.2.3",
"drizzle-orm": "beta",
"drizzle-zod": "^0.5.1",
"geist": "^1.3.0",
"@libsql/client": "0.6.0",
"lucide-react": "^0.363.0",
"nanoid": "^5.0.6",
"next": "rc",
"next-auth": "5.0.0-beta.18",
"react": "rc",
"react-dom": "rc",
"server-only": "0.0.1",
"sonner": "^1.4.41",
"tailwind-merge": "^2.2.2",
"zod": "^3.23.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@tailwindcss/postcss": "4.0.0-alpha.11",
"@types/node": "^20.11.30",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"drizzle-kit": "beta",
"eslint": "^8.57.0",
"jiti": "^1.21.0",
"postcss": "^8.4.38",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^4.0.0-alpha.11",
"typescript": "^5.4.3",
"typescript-eslint": "^7.4.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"plugins": [
"@ianvs/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss"
]
}
}