-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.04 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
{
"name": "client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev-local": "cross-env VITE_LOCAL='local' vite",
"build": "tsc && vite build",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,md}\" --config ./.prettierrc.json",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"test-with-coverage": "npm run test && npm run coverage"
},
"dependencies": {
"@aws-amplify/ui-react": "^5.3.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mapbox/mapbox-gl-directions": "^4.1.2",
"@mui/icons-material": "^5.14.8",
"@mui/material": "^5.14.8",
"@types/react-datepicker": "^4.19.3",
"aws-amplify": "^5.3.11",
"axios": "^1.5.0",
"cross-env": "^7.0.3",
"eslint-config-airbnb": "^19.0.4",
"i18next": "^23.5.1",
"lodash": "^4.17.21",
"mapbox-gl": "<2.0.0",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-datepicker": "^4.24.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-i18next": "^13.2.2",
"react-icons": "^4.12.0",
"react-router-dom": "^6.15.0",
"vite-plugin-pwa": "^0.16.5",
"zustand": "^4.4.1"
},
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@types/lodash": "^4.14.198",
"@types/mapbox-gl": "^2.7.14",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/coverage-v8": "^0.34.6",
"c8": "^8.0.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"prettier": "^3.0.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vitest": "^0.34.6"
}
}