-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·70 lines (70 loc) · 2.1 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "portal",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix"
},
"dependencies": {
"@chakra-ui/react": "^2.7.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^2.8.10",
"antd": "^5.2.2",
"axios": "^0.21.1",
"chakra-react-select": "^4.6.0",
"dayjs": "^1.11.5",
"framer-motion": "^10.12.18",
"js-cookie": "^3.0.1",
"moment": "2.24.0",
"nookies": "^2.5.2",
"notistack": "^3.0.1",
"react": "^18.1.0",
"react-bootstrap": "^2.5.0",
"react-datepicker": "^4.8.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.37.0",
"react-icons": "^4.2.0",
"react-input-mask": "^2.0.4",
"react-router-dom": "^5.2.0",
"react-text-mask": "^5.5.0",
"react-web-vector-icons": "^1.0.2",
"styled-components": "^6.0.1",
"vite-plugin-pwa": "^0.16.4",
"web-vitals": "^2.1.4",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/js-cookie": "^3.0.2",
"@types/moment": "^2.13.0",
"@types/react": "^18.0.9",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^18.0.5",
"@types/react-input-mask": "^3.0.2",
"@types/react-router-dom": "^5.3.3",
"@types/react-text-mask": "^5.4.11",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@vitejs/plugin-react": "^1.3.0",
"eslint": "^8.16.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.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"prettier": "^2.6.2",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vite-tsconfig-paths": "^3.5.0"
}
}