-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·111 lines (111 loc) · 3.62 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
110
111
{
"name": "jobjunction",
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "npx prisma generate && npx prisma migrate deploy",
"prisma:seed": "npx prisma db seed",
"prisma:docker": "npx prisma migrate dev && npm run prisma:seed && npx prisma studio ",
"dev:docker": "concurrently \"npm run prisma:docker \" \" npm run dev\" ",
"format:check": "prettier . --check",
"format:fix": "prettier . --write",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@prisma/client": "^5.18.0",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-popover": "^1.1.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",
"@tiptap/extension-bold": "^2.6.6",
"@tiptap/extension-bullet-list": "^2.6.6",
"@tiptap/extension-character-count": "^2.6.6",
"@tiptap/extension-code-block-lowlight": "^2.6.6",
"@tiptap/extension-color": "^2.6.6",
"@tiptap/extension-heading": "^2.6.6",
"@tiptap/extension-highlight": "^2.6.6",
"@tiptap/extension-history": "^2.6.6",
"@tiptap/extension-horizontal-rule": "^2.6.6",
"@tiptap/extension-italic": "^2.6.6",
"@tiptap/extension-link": "^2.6.6",
"@tiptap/extension-list-item": "^2.6.6",
"@tiptap/extension-strike": "^2.6.6",
"@tiptap/extension-text-style": "^2.6.6",
"@tiptap/extension-underline": "^2.6.6",
"@tiptap/pm": "^2.6.6",
"@tiptap/react": "^2.6.6",
"@tiptap/starter-kit": "^2.6.6",
"@types/bcryptjs": "^2.4.6",
"@typescript-eslint/parser": "^8.14.0",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"cloudinary": "^2.5.1",
"clsx": "^2.1.1",
"concurrently": "^9.0.1",
"embla-carousel-autoplay": "^8.3.0",
"embla-carousel-react": "^8.3.0",
"framer-motion": "^11.9.0",
"husky": "^9.1.6",
"lenis": "^1.1.18",
"lowlight": "^3.1.0",
"lucide-react": "^0.408.0",
"next": "14.2.5",
"next-auth": "^5.0.0-beta.20",
"next-pwa": "^5.6.0",
"next-themes": "^0.3.0",
"node-cron": "^3.0.3",
"randomstring": "^1.3.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.52.2",
"react-icons": "^5.3.0",
"react-spinners": "^0.14.1",
"recoil": "^0.7.7",
"sonner": "^1.5.0",
"streamifier": "^0.1.1",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.1",
"web-push": "^3.6.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/lowlight": "^0.0.7",
"@types/node": "^20.16.5",
"@types/node-cron": "^3.0.11",
"@types/randomstring": "^1.3.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/recoil": "^0.0.9",
"@types/streamifier": "^0.1.2",
"@types/web-push": "^3.6.4",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"postcss": "^8",
"prettier": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"prisma": "^5.18.0",
"tailwindcss": "^3.4.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.14.0"
}
}