-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "react-relax",
"version": "0.1.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --fix --ignore-path .gitignore \"**/*.{js,jsx}\"",
"start:server": "json-server --watch backend/db.json --port 3004",
"start:client": "npm run dev",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"@chakra-ui/react": "^1.6.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"@hookform/resolvers": "^2.4.0",
"date-fns": "^2.21.1",
"focus-visible": "^5.2.0",
"framer-motion": "^4.1.11",
"history": "^5.0.0",
"lodash-es": "^4.17.21",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.1",
"react-hook-form": "^7.4.0",
"react-icons": "^4.2.0",
"react-router-dom": "^6.0.0-beta.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-syntax-jsx": "^7.12.13",
"@babel/preset-env": "^7.14.1",
"@vitejs/plugin-react-refresh": "^1.3.3",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"json-server": "^0.16.3",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"vite": "^2.2.4"
}
}