-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.27 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
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
99
100
101
102
103
104
105
106
107
108
109
{
"name": "comcrm",
"author": "David Mitchell <thecodingtree>",
"license": "ISC",
"version": "0.0.1",
"description": "Comerical CRM",
"main": "index.js",
"scripts": {
"dev": "next dev --turbopack",
"dev:debug": "NODE_OPTIONS='--inspect=0.0.0.0:9229' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "vitest"
},
"devDependencies": {
"@swc/cli": "^0.1.65",
"@swc/core": "^1.10.0",
"@types/eslint": "^8.56.10",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@testing-library/react": "^14.3.1",
"@tsconfig/node18": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "^15.0.1",
"jsdom": "^24.1.3",
"nodemon": "^3.1.7",
"postcss": "^8.4.49",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prisma": "^5.22.0",
"tailwindcss": "3.4.16",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "5.5.3",
"vitest": "^1.6.0",
"vitest-mock-extended": "^1.3.2",
"zenstack": "^2.10.0"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.2",
"@hookform/resolvers": "^3.9.1",
"@mantine/hooks": "^7.14.3",
"@prisma/client": "5.12.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@t3-oss/env-nextjs": "^0.10.1",
"@tabler/icons-react": "^2.47.0",
"@tanstack/react-query": "^5.50.0",
"@tanstack/react-query-devtools": "^5.50.0",
"@trpc/client": "^11.0.0-rc.446",
"@trpc/next": "^11.0.0-rc.446",
"@trpc/react-query": "^11.0.0-rc.446",
"@trpc/server": "^11.0.0-rc.446",
"@uploadthing/react": "^6.8.0",
"@vercel/analytics": "^1.4.1",
"@vercel/postgres": "^0.5.1",
"@zenstackhq/runtime": "^2.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^0.2.1",
"date-fns": "^4.1.0",
"formik": "^2.4.6",
"graphql-tag": "^2.12.6",
"lucide-react": "^0.468.0",
"morgan": "^1.10.0",
"next": "^15.1.0",
"next-auth": "^5.0.0-beta.25",
"next-themes": "^0.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-day-picker": "9.4.1",
"react-hook-form": "^7.54.0",
"resend": "^4.0.1",
"sharp": "^0.33.5",
"sonner": "^1.7.0",
"superjson": "^2.2.2",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"uploadthing": "^6.13.3",
"vaul": "^0.8.9",
"zod": "^3.23.8"
},
"prisma": {
"seed": "tsx ./prisma/fixtures/seed.ts"
},
"trustedDependencies": [
"zenstack"
]
}