-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.96 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
{
"name": "@MichailShcherbakov/simple-hotel-check",
"private": true,
"version": "1.0.0",
"type": "module",
"license": "MIT",
"author": "MichailShcherbakov <50011226+MichailShcherbakov@users.noreply.github.com>",
"bugs": {
"url": "https://github.com/MichailShcherbakov/simple-hotel-check/issues"
},
"homepage": "https://github.com/MichailShcherbakov/simple-hotel-check#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MichailShcherbakov/simple-hotel-check.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint \"src/**/*.ts\" --fix",
"fmt": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"fmt:check": "prettier --check \"src/**/*.ts\""
},
"dependencies": {
"@fontsource/roboto": "^4.5.8",
"@reduxjs/toolkit": "^1.9.3",
"clsx": "^1.2.1",
"formik": "^2.2.9",
"luxon": "^3.2.1",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.2",
"redux": "^4.2.1",
"redux-saga": "^1.2.2",
"swiper": "^9.1.0",
"vite-plugin-svgr": "^2.4.0",
"yup": "^1.0.2"
},
"devDependencies": {
"@types/luxon": "^3.2.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"tailwind-scrollbar": "^2.1.0",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-tsconfig-paths": "^4.0.7"
}
}