-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.48 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.48 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
96
97
98
{
"name": "jet-centre",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 5005 --turbopack",
"build": "next build --turbopack",
"start": "next start --port 5005",
"lint": "next lint",
"prettier": "prettier",
"fmt": "prettier -cw .",
"commitlint": "commitlint --from=HEAD~10 --to=HEAD",
"generate": "prisma generate",
"migrate:dev": "prisma migrate dev",
"migrate:deploy": "prisma migrate deploy",
"migrate:reset": "prisma migrate reset",
"db:seed:dev": "prisma db seed -- --environment dev"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@hookform/resolvers": "^4.1.3",
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@mdxeditor/editor": "^3.29.1",
"@prisma/client": "6.12.0",
"@radix-ui/react-alert-dialog": "^1.1.13",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-hover-card": "^1.1.10",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-toggle": "^1.1.9",
"@radix-ui/react-toggle-group": "^1.1.10",
"@radix-ui/react-tooltip": "^1.1.8",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.1",
"embla-carousel-react": "^8.5.2",
"framer-motion": "^12.23.12",
"googleapis": "^148.0.0",
"googleapis-common": "~7.2.0",
"i18next": "^24.2.3",
"lucide-react": "^0.485.0",
"next": "15.5.18",
"next-auth": "^5.0.0-beta.25",
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-animate-height": "^3.2.3",
"react-dom": "^19.1.0",
"react-hook-form": "^7.55.0",
"react-icons": "^5.5.0",
"react-textarea-autosize": "^8.5.9",
"sonner": "^2.0.7",
"swr": "^2.3.6",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.5",
"zod": "^3.24.2",
"zod-i18n-map": "^2.27.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@eslint/eslintrc": "^3.3.1",
"@types/mailchimp__mailchimp_marketing": "^3.0.21",
"@types/node": "^22.14.1",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"eslint": "^9.23",
"eslint-config-next": "^15.4.4",
"eslint-plugin-import": "^2.31.0",
"jiti": "^2.4.2",
"knip": "^5.56.0",
"postcss": "^8.5.3",
"postcss-load-config": "^6.0.1",
"prettier": "^3.5.3",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "6.12.0",
"prisma-docs-generator": "git+https://github.com/t-webber/prisma-docs-generator",
"tailwindcss": "^3.4.17",
"tsx": "^4.20.3",
"typescript": "^5.8.2"
}
}