-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "react-template",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build && echo '/* /index.html 200' | cat >dist/_redirects",
"lint": "npm run lint-eslint && npm run lint-css",
"lint-eslint": "eslint --ext .js,.jsx src/ *.js",
"lint-css": "stylelint \"src/**/*.{js,jsx}\"",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@reduxjs/toolkit": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.15.0",
"styled-components": "^6.0.7",
"vite-plugin-svgr": "^3.3.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-security": "^1.7.1",
"husky": "^8.0.3",
"postcss-styled-syntax": "^0.4.0",
"prettier": "^3.0.0",
"stylelint": "^15.10.1",
"stylelint-config-standard": "^34.0.0",
"vite": "^4.3.9"
}
}