-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.84 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.84 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
{
"name": "hacklab-booking-frontend",
"description": "The frontend for the Hacklab Booking System",
"version": "2.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/utmgdsc/hacklab-booking.git"
},
"author": "GDSC UTM",
"license": "MIT",
"bugs": {
"url": "https://github.com/utmgdsc/hacklab-booking/issues"
},
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"pretty": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,html}\""
},
"prettier": {
"tabWidth": 4,
"useTabs": false,
"singleQuote": true,
"printWidth": 120
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.5",
"@mui/icons-material": "^5.14.0",
"@mui/material": "^5.13.7",
"@mui/x-date-pickers-pro": "^6.9.2",
"axios": "^1.4.0",
"core-js": "^3.39.0",
"dayjs": "^1.11.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"react-schedule-selector": "^3.0.2",
"react-transition-group": "^4.4.5",
"react-virtuoso": "^4.4.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.11.0",
"prettier": "^3.0.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.14.0",
"vite": "^5.4.11"
}
}