-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.38 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
{
"name": "linkleaf",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "bun run migrate:prod && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"migrate:dev": "prisma migrate dev",
"migrate:prod": "prisma migrate deploy"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.8",
"@hello-pangea/dnd": "^16.3.0",
"@mantine/core": "^7.2.2",
"@mantine/dropzone": "^7.2.2",
"@mantine/form": "^7.2.2",
"@mantine/hooks": "^7.2.2",
"@prisma/client": "^5.6.0",
"@tabler/icons-react": "^2.42.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"next": "14.0.3",
"next-auth": "^4.24.5",
"prisma": "^5.6.0",
"react": "^18",
"react-dom": "^18",
"social-logos": "^2.5.6",
"tailwind-merge": "^2.0.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-radix": "^2.8.0",
"zustand": "^4.4.6"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/social-logos": "^2.3.4",
"autoprefixer": "^10.4.16",
"bun-types": "^1.0.14",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"postcss": "^8.4.31",
"postcss-preset-mantine": "^1.11.0",
"postcss-simple-vars": "^7.0.1",
"tailwindcss": "^3.3.5",
"typescript": "^5"
}
}