-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
84 lines (84 loc) · 2.44 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": "find-available-doctor",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@mui/system": "^5.16.7",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^15.0.5",
"@testing-library/user-event": "^14.5.2",
"i18next": "^23.14.0",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.6.1",
"json2mq": "^0.2.0",
"leaflet": "^1.8.0",
"leaflet.markercluster": "^1.5.3",
"markdown-to-jsx": "^7.5.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-helmet-async": "^2.0.5",
"react-infinite-scroll-component": "^6.1.0",
"react-leaflet": "3.2.3",
"react-leaflet-markercluster": "^3.0.0-rc1",
"react-papaparse": "^4.4.0",
"react-router": "^6.22.2",
"react-router-dom": "^6.26.1",
"react-scripts": "^5.0.1",
"react-style-proptype": "^3.2.2",
"slugify": "^1.6.6",
"uuid": "^10.0.0",
"web-vitals": "^4.2.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:analyze": "",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test:unit": "react-scripts test",
"test:e2e": "yarn playwright test",
"eject": "react-scripts eject",
"analyze": "react-scripts build --stats && webpack-bundle-analyzer ./build/bundle-stats.json"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"@playwright/test": "^1.46.1",
"@types/node": "^22.5.0",
"env-cmd": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"install-peers": "^1.0.4",
"prettier": "^3.3.3",
"webpack-bundle-analyzer": "^4.10.2"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">=1.22.0"
},
"jest": {
"collectCoverageFrom": [
"src/tests/unit/**/*.{js,jsx,ts,tsx}",
"!src/tests/e2e/**/*.{js,jsx,ts,tsx}"
],
"testMatch": [
"/src/tests/unit/**/__tests__/**/*.[jt]s?(x)",
"/src/tests/unit/**/?(*.)+(spec|test).[jt]s?(x)"
]
}
}