-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.96 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
{
"name": "ezRef",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.5.0",
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev",
"vercel:build": "prisma generate && prisma migrate deploy && next build",
"build": "next build",
"start": "next start",
"test": "vitest",
"lint": "next lint",
"db:migrate:dev": "dotenv -e .env.local -- pnpm exec prisma migrate dev --name '${npm_config_name}'",
"db:migrate:deploy": "pnpm exec prisma migrate deploy --name '${npm_config_name}'",
"db:push": "dotenv -e .env.local -- pnpm exec prisma db push",
"db:gen": "dotenv -e .env.local -- pnpm exec prisma generate",
"db:ui": "dotenv -e .env.local -- pnpm exec prisma studio"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"dependencies": {
"@clerk/nextjs": "^5.1.6",
"@clerk/themes": "^2.1.10",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.3.4",
"@nextui-org/react": "^2.2.2",
"@prisma/client": "5.20.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@reduxjs/toolkit": "^1.9.7",
"@tsparticles/engine": "^3.4.0",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.4.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"dayjs": "^1.11.10",
"framer-motion": "^10.16.4",
"mini-svg-data-uri": "^1.4.4",
"nanoid": "^5.0.3",
"next": "14.2.4",
"next-themes": "^0.2.1",
"prisma": "^5.20.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.49.3",
"react-icons": "^4.12.0",
"react-redux": "^8.1.3",
"react-type-animation": "^3.2.0",
"shadcn-ui": "^0.5.0",
"sharp": "^0.33.5",
"sonner": "^1.3.1",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"vite-plugin-magical-svg": "^1.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/redux-logger": "^3.0.12",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.0.1",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"eslint": "^8",
"eslint-config-next": "14.0.1",
"eslint-config-prettier": "9.0.0",
"jsdom": "^24.1.0",
"postcss": "^8",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"redux-logger": "^3.0.6",
"tailwindcss": "^3.3.0",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.3"
}
}