-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 2.6 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "capju-front",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts --ext tsx --ext js",
"prepare": "husky install",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test": "vitest --silent"
},
"dependencies": {
"@chakra-ui/form-control": "^2.0.0",
"@chakra-ui/icon": "^3.0.0",
"@chakra-ui/icons": "^2.0.18",
"@chakra-ui/layout": "^2.0.0",
"@chakra-ui/media-query": "^3.0.0",
"@chakra-ui/menu": "^2.0.0",
"@chakra-ui/react": "^2.5.5",
"@chakra-ui/spinner": "^2.0.0",
"@chakra-ui/system": "^2.5.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@hookform/resolvers": "^3.1.0",
"@tanstack/react-table": "^8.8.5",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.16.0",
"@types/react-table": "^7.7.14",
"@vitejs/plugin-react": "^4.0.0",
"axios": "^1.3.6",
"chakra-react-select": "^4.6.0",
"framer-motion": "^10.12.4",
"lodash": "^4.17.21",
"msw": "^1.2.2",
"nwsapi": "2.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-icons": "^4.8.0",
"react-input-mask": "^2.0.4",
"react-paginate": "^8.2.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.10.0",
"react-select-event": "^5.5.1",
"react-table": "^7.8.0",
"reactflow": "^11.7.2",
"resize-observer-polyfill": "^1.5.1",
"vite": "^4.3.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest-sonar-reporter": "^0.4.1",
"yup": "^1.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-input-mask": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitest/coverage-c8": "^0.31.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"jsdom": "^22.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"typescript": "^4.4.2",
"vitest": "^0.31.1"
}
}