-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.01 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.01 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
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
112
{
"name": "cssi",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint . --fix",
"prepare": "husky install",
"drizzle:generate": "drizzle-kit generate",
"drizzle:push": "drizzle-kit push"
},
"husky": {
"hooks": {
"pre-commit": "pnpm lint-staged"
}
},
"lint-staged": {
"!(*pnpm-lock.yaml|package.json|src/drizzle/migrations/**|.prettierignore|tsconfig.json|*.css|*.scss|*.pdf)": [
"prettier --write"
],
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1032.0",
"@aws-sdk/s3-request-presigner": "^3.1032.0",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/list": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@neondatabase/serverless": "^0.10.4",
"@react-jvectormap/core": "^1.0.4",
"@react-jvectormap/world": "^1.1.2",
"@react-pdf-viewer/core": "3.12.0",
"@react-pdf-viewer/default-layout": "3.12.0",
"@react-pdf/renderer": "^4.3.0",
"@tailwindcss/forms": "^0.5.9",
"@upstash/redis": "^1.35.2",
"autoprefixer": "^10.4.20",
"cloudinary": "^2.6.0",
"clsx": "^2.1.1",
"file-saver": "^2.0.5",
"flatpickr": "^4.6.13",
"gsap": "^3.12.7",
"ioredis": "^5.10.1",
"lucide-react": "^0.483.0",
"next": "16.0.10",
"next-auth": "^4.24.11",
"next-cloudinary": "^6.16.0",
"next-themes": "^0.4.4",
"nodemailer": "^6.10.0",
"pdfjs-dist": "3.4.120",
"pg": "^8.20.0",
"prom-client": "^15.1.3",
"react": "^19.0.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.5",
"react-flatpickr": "^3.10.13",
"react-hot-toast": "^2.5.2",
"swiper": "^11.2.0",
"tailwind-merge": "^2.6.0",
"uuid": "^11.1.0",
"xlsx": "^0.18.5",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@tailwindcss/postcss": "^4.0.14",
"@types/file-saver": "^2.0.7",
"@types/node": "^20.17.19",
"@types/nodemailer": "^6.4.17",
"@types/pg": "^8.20.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/uuid": "^10.0.0",
"canvas": "^2.9.0",
"drizzle-kit": "^0.30.5",
"drizzle-orm": "^0.40.0",
"eslint": "^9.21.0",
"eslint-config-next": "15.1.7",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^8.0.3",
"lint-staged": "^15.4.3",
"postcss": "^8.5.3",
"prettier": "^3.5.2",
"tailwindcss": "^4.0.14",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "es5",
"endOfLine": "lf"
}
}