-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.91 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "revelio-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "yarn format && yarn check-format",
"prepare": "husky",
"test": "jest",
"clear-jest-cache": "jest --clearCache"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.5",
"@fullcalendar/core": "^6.1.11",
"@fullcalendar/daygrid": "^6.1.11",
"@fullcalendar/interaction": "^6.1.11",
"@fullcalendar/list": "^6.1.11",
"@fullcalendar/react": "^6.1.11",
"@fullcalendar/timegrid": "^6.1.11",
"@iconify/types": "^2.0.0",
"@mui/icons-material": "^5.15.7",
"@mui/lab": "^5.0.0-alpha.167",
"@mui/material": "^5.15.12",
"@mui/material-nextjs": "^5.15.7",
"@mui/x-date-pickers": "^6.19.6",
"@reduxjs/toolkit": "^2.2.1",
"class-variance-authority": "^0.7.0",
"dayjs": "^1.11.10",
"framer-motion": "^11.0.8",
"next": "13.5.6",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.50.1",
"react-hot-toast": "^2.4.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.2",
"react-toastify": "^10.0.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^3.1.0",
"tailwind-gradient-mask-image": "^1.2.0",
"tailwind-merge": "^2.2.1",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@egoist/tailwindcss-icons": "^1.7.4",
"@iconify-json/bi": "^1.1.23",
"@iconify-json/fa6-regular": "^1.1.18",
"@iconify-json/logos": "^1.1.42",
"@iconify-json/ph": "^1.1.10",
"@iconify/react": "4.1.1",
"@iconify/tailwind": "^1.0.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18.3.1",
"@types/react-dom": "^18",
"@types/redux": "^3.6.0",
"@types/redux-mock-store": "^1.0.6",
"@types/tailwindcss": "^3.1.0",
"autoprefixer": "^10.4.17",
"babel-jest": "^29.7.0",
"check-code-coverage": "^1.10.5",
"eslint": "^8",
"eslint-config-next": "13.5.6",
"husky": "^9.0.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw": "^2.2.14",
"postcss": "^8.4.34",
"prettier": "^3.2.5",
"redux-mock-store": "^1.5.4",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tw-colors": "3.3.1",
"typescript": "^5"
}
}