-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.69 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.69 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
73
74
75
76
77
78
79
80
81
82
{
"name": "react-typscript-vite-redux-redux-saga-mui-boilerplate",
"version": "1.0.0",
"main": "src/app.js",
"author": "Abdulnasır olcan",
"license": "MIT",
"scripts": {
"dev": "vite",
"start": "yarn dev",
"build": "vite build",
"preview": "vite preview",
"lint": "yarn lint-js && yarn lint-fix && yarn lint-ts && yarn lint-css && yarn format",
"lint-js": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"lint-ts": "tsc --noemit --pretty",
"lint-fix": "eslint --fix './src/**/*.{js,jsx,ts,tsx}'",
"lint-css": "stylelint './src/**/*.{jsx,js,tsx,ts}'",
"format": "prettier --write './src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc.json",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@hookform/resolvers": "^2.9.1",
"@mui/icons-material": "^5.5.0",
"@mui/material": "^5.5.0",
"@redux-saga/core": "^1.1.3",
"@reduxjs/toolkit": "^1.8.2",
"axios": "^0.27.2",
"history": "^5.3.0",
"i18next": "^21.8.9",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.32.0",
"react-i18next": "^11.17.1",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.0",
"redux": "^4.1.2",
"redux-first-history": "^5.0.8",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/register": "^7.17.7",
"@types/node": "^17.0.33",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.27.1",
"@vitejs/plugin-react": "^1.3.2",
"c8": "^7.11.2",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jsdom": "^19.0.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"sass": "^1.52.3",
"stylelint": "14.5.3",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard-scss": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"typescript": "^4.7.3",
"vite": "^2.9.9"
}
}