-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.25 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.25 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
71
72
{
"name": "hotelzilla-ui",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint-js": "eslint --ignore-path .gitignore .",
"lint-js-fix": "eslint --ignore-path .gitignore . --fix",
"lint-css": "stylelint --ignore-path .gitignore \"**/*.{css,scss}\"",
"lint-css-fix": "stylelint --ignore-path .gitignore \"**/*.{css,scss}\" --fix",
"validate": "npm run lint-css && npm run lint-js",
"fix-linters": "npm run lint-css-fix && npm run lint-js-fix",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.7.0",
"@reduxjs/toolkit": "^1.8.1",
"@vitejs/plugin-react": "^1.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"vite": "^2.9.7"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-syntax-jsx": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"autoprefixer": "^10.4.7",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"jsdom": "^19.0.0",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.10",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^21.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.21.0",
"tailwindcss": "^3.0.24",
"vitest": "^0.12.6"
},
"main": "postcss.config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Anjacodes/Hotelzilla-UI.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Anjacodes/Hotelzilla-UI/issues"
},
"homepage": "https://github.com/Anjacodes/Hotelzilla-UI#readme",
"description": ""
}