-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.67 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
85
86
87
88
89
90
91
92
93
{
"name": "alectrion",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "node server/app.js",
"dev": "vite",
"build": " rm -rf dist && tsc && vite build",
"preview": "vite preview --port 8080",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint ./",
"lint:fix": "yarn lint --fix",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.ts": [
"yarn lint:fix"
],
"*.tsx": [
"yarn lint:fix"
]
},
"dependencies": {
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.4.6",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@react-pdf/renderer": "^3.1.11",
"@tanstack/react-query": "^4.3.9",
"@tanstack/react-query-devtools": "^4.3.9",
"axios": "^1.2.2",
"chakra-react-select": "^4.4.3",
"date-fns": "^2.30.0",
"express": "^4.18.2",
"express-history-api-fallback": "^2.2.1",
"express-static-gzip": "^2.1.7",
"formik": "^2.2.9",
"framer-motion": "^6",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.5.28",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-csv": "^2.2.2",
"react-datepicker": "^4.11.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.41.5",
"react-icons": "^4.8.0",
"react-input-mask": "^2.0.4",
"react-pdf": "^7.0.3",
"react-render-if-visible": "^2.1.1",
"react-router-dom": "^6.6.1",
"react-toastify": "^9.1.2",
"sass": "^1.57.1",
"vitest-sonar-reporter": "^0.4.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.26",
"@types/react-csv": "^1.1.3",
"@types/react-datepicker": "^4.8.0",
"@types/react-dom": "^18.0.9",
"@types/react-input-mask": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"@vitest/coverage-c8": "^0.27.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.3",
"intersection-observer": "^0.12.2",
"jsdom": "^22.1.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-compression": "^0.5.1",
"vite-tsconfig-paths": "^4.0.3",
"vitest": "^0.26.3",
"zlib": "^1.0.5"
}
}