-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 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
{
"name": "better-timetable-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:seed": "drizzle-kit seed"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"cheerio": "^1.0.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.38.4",
"lucia-auth": "^1.8.0",
"luxon": "^3.5.0",
"moment": "^2.30.1",
"mysql2": "^3.12.0",
"next": "^15.1.5",
"react": "^19.0.0",
"react-color": "^2.19.3",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"uuid": "^11.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/bcrypt": "^5.0.2",
"@types/luxon": "^3.4.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.23",
"drizzle-kit": "^0.30.2",
"eslint": "^9",
"eslint-config-next": "15.1.5",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5"
}
}