-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.75 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
{
"name": "flight-ticket-system",
"version": "3.0.0",
"license": "Commercial",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"build:icons": "tsx src/assets/iconify-icons/bundle-icons-css.ts",
"postinstall": "npm run build:icons"
},
"dependencies": {
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@floating-ui/react": "0.26.13",
"@material/menu": "^14.0.0",
"@mui/icons-material": "^5.15.18",
"@mui/lab": "5.0.0-alpha.170",
"@mui/material": "5.15.16",
"@mui/material-nextjs": "5.15.11",
"@mui/x-date-pickers": "^7.6.2",
"@react-spring/web": "^9.7.3",
"@reduxjs/toolkit": "^2.2.5",
"@types/react-datepicker": "^6.2.0",
"@types/react-redux": "^7.1.33",
"@types/styled-components": "^5.1.34",
"axios": "^1.7.2",
"classnames": "2.5.1",
"date-fns": "^3.6.0",
"dayjs": "^1.11.11",
"flatpickr": "^4.6.13",
"js": "^0.1.0",
"material-ui-popup-state": "^5.1.2",
"moment": "^2.30.1",
"next": "14.2.3",
"react": "^18.0.0",
"react-colorful": "5.6.1",
"react-datepicker": "^6.9.0",
"react-dom": "^18.0.0",
"react-flatpickr": "^3.10.13",
"react-hook-form": "^7.51.5",
"react-icons": "^5.2.1",
"react-multi-date-picker": "^4.5.1",
"react-perfect-scrollbar": "1.5.8",
"react-redux": "^9.1.2",
"react-select": "^5.8.0",
"react-tailwindcss-datepicker": "^1.6.6",
"react-toastify": "10.0.5",
"react-use": "17.5.0",
"recharts": "^2.12.7",
"redux-persist": "^6.0.0",
"server-only": "0.0.1",
"styled-components": "^6.1.11",
"sweetalert2": "^11.11.1",
"swiper": "^11.1.3"
},
"devDependencies": {
"@iconify/json": "2.2.206",
"@iconify/tools": "4.0.4",
"@iconify/types": "2.0.0",
"@iconify/utils": "2.1.23",
"@types/node": "^20.12.8",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"postcss": "8.4.38",
"postcss-styled-syntax": "0.6.4",
"prettier": "3.2.5",
"stylelint": "16.5.0",
"stylelint-use-logical-spec": "5.0.1",
"stylis": "4.3.2",
"stylis-plugin-rtl": "2.1.1",
"tailwindcss": "3.4.3",
"tailwindcss-logical": "3.0.1",
"tsx": "4.8.2",
"typescript": "5.4.5"
},
"resolutions": {
"immutable": "3.7.4"
}
}