-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "onlystore",
"version": "0.0.1",
"homepage": "https://knd-devsnest.github.io/onlystore/",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"format": "prettier --write \"src/**/*.{js,jsx,html,css}\"",
"format:verify": "prettier --check \"src/**/*.{js,jsx,html,css}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx}\" --quiet",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@reduxjs/toolkit": "^1.6.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@vitejs/plugin-react-refresh": "^1.3.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.2.3",
"husky": "4",
"prettier": "^2.3.2",
"vite": "^2.4.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}