-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.96 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.96 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "frontend-template",
"description": "Boilerplate to setup a basic frontend project on Next.js",
"version": "0.0.0",
"author": {
"name": "Agustin Maggi"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/a-maggi/frontend-template.git"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"postinstall": "prisma generate --schema=./db/schema.prisma",
"publish:db": "prisma db push --schema=./db/schema.prisma",
"publish:seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} db/seed.ts"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} db/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.0",
"@prisma/client": "^5.19.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-email/components": "^0.0.25",
"@react-spring/web": "^9.7.3",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"@upstash/redis": "^1.31.2",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"cmdk": "^1.0.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.1.3",
"dateformat": "^5.0.3",
"framer-motion": "^11.5.4",
"froala-editor": "^4.0.10",
"input-otp": "^1.2.4",
"mapbox-gl": "^3.7.0",
"next": "^15.1.3",
"next-auth": "^4.24.11",
"next-themes": "^0.4.4",
"postcss": "^8.1.14",
"react": "^18.2.0",
"react-day-picker": "^9.5.0",
"react-dom": "^18.2.0",
"react-email": "^3.0.1",
"react-froala-wysiwyg": "^4.0.10",
"react-hook-form": "^7.54.2",
"react-icons": "^5.3.0",
"recharts": "^2.15.0",
"resend": "^4.0.0",
"swr": "^2.2.4",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/mapbox-gl": "^3.4.0",
"@types/node": "^22.7.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.3.0",
"autoprefixer": "10.4.20",
"eslint": "9.12.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"prisma": "^5.19.1",
"tailwindcss": "^3.4.3",
"typescript": "^5.6.3"
}
}