-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
85 lines (85 loc) · 2.26 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
{
"name": "roataway-web",
"version": "0.1.3",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.4",
"@mui/lab": "^5.0.0-alpha.51",
"@mui/material": "^5.0.4",
"@roataway/infrastructure-data": "^1.0.21",
"@sentry/browser": "^6.13.3",
"@splitbee/web": "^0.3.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.24",
"@types/leaflet": "^1.5.9",
"@types/lodash.difference": "^4.5.6",
"@types/lodash.uniqby": "^4.7.6",
"@types/node": "^12.20.33",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"@types/react-leaflet": "^2.5.0",
"@types/sockjs-client": "^1.1.1",
"all-contributors-cli": "^6.20.0",
"csv-parse": "^4.8.6",
"csv.macro": "^1.0.1",
"eslint-plugin-compat": "^3.13.0",
"husky": "^7.0.2",
"i18next": "^21.3.2",
"i18next-browser-languagedetector": "^6.1.2",
"leaflet": "^1.6.0",
"lint-staged": "^11.2.3",
"lodash.difference": "^4.5.0",
"lodash.uniqby": "^4.7.0",
"preact": "^10.5.15",
"prettier": "^2.4.1",
"react": "npm:@preact/compat@^17.0.2",
"react-dom": "npm:@preact/compat@^17.0.2",
"react-hook-form": "^6.8.6",
"react-i18next": "^11.12.0",
"react-leaflet": "^2.6.1",
"react-scripts": "4.0.3",
"sass": "^1.43.2",
"sockjs-client": "^1.4.0",
"typescript": "^4.4.4",
"web-vitals": "^1.1.2",
"webstomp-client": "^1.2.6"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:compat/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not IE 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": "prettier --write"
}
}