-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.94 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "aodn-portal-v2-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "bash generateEnv.sh dev && vitest run && vite --mode dev",
"dev:no-test": "bash generateEnv.sh dev && vite --mode dev",
"edge": "bash generateEnv.sh edge && tsc && vitest run && vite build --mode edge",
"staging": "bash generateEnv.sh staging && tsc && vitest run && vite build --mode staging",
"prod": "bash generateEnv.sh prod && tsc && vitest run && vite build --mode prod",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"postinstall": "husky",
"test": "vitest",
"test:debug": "vitest --run --reporter=verbose --watch=false",
"playwright": "docker compose -f playwright/docker-compose.yml up --abort-on-container-exit --exit-code-from tests",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@emotion/styled": "^11.11.0",
"@mapbox/geo-viewport": "^0.5.0",
"@mapbox/mapbox-gl-draw": "^1.4.3",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.16.7",
"@mui/system": "^5.16.7",
"@mui/x-charts": "^6.19.3",
"@mui/x-date-pickers": "^6.19.3",
"@reduxjs/toolkit": "^2.1.0",
"@turf/turf": "7.0.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/mapbox__geo-viewport": "^0.5.3",
"@types/mapbox__mapbox-gl-draw": "^1.4.6",
"@types/media-typer": "^1.1.3",
"@types/node": "^20.11.16",
"@types/react-window": "^1.8.8",
"@types/redux-logger": "^3.0.13",
"@types/wellknown": "^0.5.8",
"axios": "^1.7.4",
"dayjs": "^1.11.10",
"dompurify": "^3.2.0",
"events": "3.3.0",
"geojson": "0.5.0",
"he": "^1.2.0",
"http-proxy-middleware": "3.0.3",
"lodash": "^4.17.21",
"mapbox-gl": "3.4.0",
"mapbox-gl-draw-rectangle-mode": "^1.0.4",
"maplibre-gl": "^4.0.0",
"media-typer": "^1.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-ipynb-renderer": "^2.1.4",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.0",
"react-virtualized-auto-sizer": "1.0.24",
"react-window": "^1.8.10",
"react-youtube": "^10.1.0",
"redux-logger": "^3.0.6",
"svgo": "^3.2.0",
"web-vitals": "^3.5.2",
"wellknown": "^0.5.0"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@emotion/react": "^11.13.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/he": "^1",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^2.1.2",
"commitlint-config-gitmoji": "^2.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-ts-bundled": "^5.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^9.1.1",
"lint-staged": "^15.2.2",
"msw": "^2.4.9",
"prettier": "^3.2.5",
"react-redux": "^9.1.0",
"rollup": "^4.22.4",
"typescript": "^5.4.2",
"typescript-eslint": "^7.2.0",
"vite": "^5.4.8",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^2.1.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write --ignore-unknown"
]
},
"engines": {
"node": "18.x || >=20.x",
"npm": ">=8.0.0"
},
"packageManager": "[email protected]"
}