-
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.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 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": "quanta",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@8.6.12",
"engines": {
"node": "18.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate:pg",
"db:migrate": "tsx src/db/migrate.ts"
},
"dependencies": {
"@clerk/nextjs": "^4.27.1",
"@hookform/resolvers": "^3.3.1",
"@mantine/core": "7.0.0-beta.5",
"@mantine/hooks": "7.0.0-beta.5",
"@t3-oss/env-nextjs": "^0.6.1",
"@tabler/icons-react": "^2.34.0",
"autoprefixer": "10.4.15",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.28.6",
"nanoid": "^5.0.1",
"next": "14.0.2",
"postgres": "^3.3.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.46.1",
"tailwindcss": "3.3.3",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/eslint": "^8.44.2",
"@types/node": "20.5.6",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"drizzle-kit": "^0.19.13",
"eslint": "8.48.0",
"eslint-config-next": "14.0.2",
"postcss": "8.4.28",
"postcss-preset-mantine": "^1.7.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.0.2",
"tsx": "^4.1.1",
"typescript": "5.2.2"
}
}