-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.15 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
{
"name": "resortmanagementsystem-fe",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --open",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier \"src/**/*.{js,jsx,ts,tsx,css,scss}\" --write",
"test": "vitest run src/ && playwright test",
"test:unit": "vitest src/",
"test:unit:coverage": "vitest --coverage src/",
"test:e2e": "playwright test",
"test:e2e:report": "playwright show-report",
"prepare": "husky"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.1.8",
"@mui/material": "^6.1.8",
"@mui/x-charts": "^7.23.2",
"@mui/x-date-pickers": "^7.23.3",
"@reduxjs/toolkit": "^2.3.0",
"axios": "^1.7.9",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"react": "^18.3.1",
"react-date-range": "^2.0.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-material-ui-carousel": "^3.4.2",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.2",
"recharts": "^2.15.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@faker-js/faker": "^9.2.0",
"@hookform/devtools": "^4.3.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.11.0",
"husky": "^9.1.7",
"playwright": "^1.49.0",
"prettier": "^3.3.3",
"react-hook-form": "^7.53.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.10",
"vite-plugin-static-copy": "^2.2.0",
"vitest": "^2.1.8"
}
}