-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.74 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
94
95
96
97
{
"name": "mvj-ui-public",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "yarn dev",
"dev": "vite",
"test": "vitest run",
"build": "vite build",
"i18n": "npx i18next",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare-renew-endpoint": "node scripts/prepare-renew-endpoint.js",
"prepare": "husky install"
},
"dependencies": {
"@react-hook/throttle": "^2.2.0",
"@reduxjs/toolkit": "^1.9.7",
"classnames": "^2.3.2",
"connected-react-router": "^6.9.3",
"geojson": "^0.5.0",
"hds-core": "3.4.0",
"hds-design-tokens": "3.4.0",
"hds-react": "^3.10.1",
"history": "^5.3.0",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"leaflet": "1.9.4",
"leaflet-draw": "^1.0.4",
"leaflet-geosearch": "^3.10.2",
"leaflet-measure-path": "^1.5.0",
"proj4": "^2.9.0",
"proj4leaflet": "^1.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-grid-system": "^8.0.1",
"react-helmet": "^6.1.0",
"react-i18next": "^13.2.2",
"react-leaflet": "^4.2.1",
"react-leaflet-draw": "^0.20.4",
"react-redux": "^8.1.3",
"react-router": "^6.0.2",
"react-router-dom": "^6.0.2",
"redux": "^4.2.1",
"redux-actions": "^3.0.0",
"redux-form": "^8.3.8",
"redux-injectors": "^2.1.0",
"redux-saga": "^1.2.3",
"web-vitals": "^3.5.0"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/leaflet": "^1.9.8",
"@types/leaflet-draw": "^1.0.10",
"@types/leaflet-geosearch": "^3.0.0",
"@types/node": "^20.9.0",
"@types/postcss-url": "^10.0.3",
"@types/proj4": "^2.5.5",
"@types/proj4leaflet": "^1.0.10",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-helmet": "^6.1.9",
"@types/redux-actions": "^2.6.5",
"@types/redux-form": "^8.3.9",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"i18next-parser": "^8.9.0",
"lint-staged": "^15.1.0",
"playwright": "^1.49.0",
"postcss": "^8.4.4",
"postcss-url": "^10.1.3",
"prettier": "^3.1.0",
"sass": "^1.69.5",
"semver": "^7.3.5",
"stream-browserify": "^3.0.0",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-static-copy": "^0.17.0",
"vite-plugin-svgr": "^4.1.0",
"vitest": "^0.34.6"
},
"prettier": {
"singleQuote": true,
"arrowParens": "always",
"printWidth": 80
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,scss,md}": [
"prettier --write"
]
}
}