-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.24 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
{
"name": "fall-stack2023",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "prisma db seed",
"wipe": "tsx prisma/wipe.ts",
"generate": "prisma generate",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@ducanh2912/next-pwa": "^9.7.2",
"@nextui-org/react": "^2.4.8",
"@rooks/use-window-size": "^4.11.2",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"framer-motion": "^10.18.0",
"jsonwebtoken": "^9.0.2",
"next": "^15.0.3",
"qrcode.react": "^3.2.0",
"react": "^18.3.1",
"react-canvas-confetti": "^1.4.0",
"react-dom": "^18.3.1",
"react-icons": "^4.12.0",
"react-loading-skeleton": "^3.5.0",
"react-particles": "^2.12.2",
"react-zxing": "^2.0.2",
"sharp": "^0.32.6",
"swal": "^0.1.0",
"sweetalert": "^2.1.2",
"typewriter-effect": "^2.21.0",
"xlsx": "^0.18.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@prisma/client": "5.22.0",
"@types/bcrypt": "^5.0.2",
"@types/downloadjs": "^1.4.6",
"@types/jsonwebtoken": "^9.0.7",
"@types/lodash": "^4.17.13",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.20",
"downloadjs": "^1.4.7",
"eslint": "^8.57.1",
"eslint-config-next": "14.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"firebase-admin": "^11.11.0",
"framer-motion": "^10.16.4",
"lodash": "^4.17.21",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.22.0",
"react-easy-crop": "^5.1.0",
"react-toastify": "^9.1.3",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.15",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"uuid": "^9.0.1",
"webpack": "^5.96.1",
"zod": "^3.22.4"
}
}