-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.68 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.68 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
{
"name": "complexdeveloperscrm",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "eslint",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:seed": "npx tsx prisma/seed.ts",
"db:studio": "prisma studio"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.1.0",
"@radix-ui/react-avatar": "^1.1.11",
"@yaireo/tagify": "^4.36.0",
"animate.css": "^4.1.1",
"aos": "^2.3.4",
"bcryptjs": "^3.0.3",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"chart.js": "^4.5.1",
"cookie": "^1.1.1",
"datatables.net": "^2.3.7",
"datatables.net-bs5": "^2.3.7",
"daterangepicker": "^3.1.0",
"emojionearea": "^3.4.2",
"feather-icons": "^4.29.2",
"flag-icons": "^7.5.0",
"flatpickr": "^4.6.13",
"jquery-steps": "^1.1.0",
"jsonwebtoken": "^9.0.3",
"next": "16.1.6",
"quill": "^2.0.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"select2": "^4.1.0-rc.0",
"sweetalert2": "^11.26.17",
"tui-calendar": "^1.15.3",
"tui-date-picker": "^4.3.3",
"tui-time-picker": "^2.1.6"
},
"devDependencies": {
"@prisma/client": "^5.22.0",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"prisma": "^5.22.0",
"tailwindcss": "^4",
"tsx": "^4.19.0",
"typescript": "^5"
}
}