-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.8 KB
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
{
"name": "group-car",
"version": "1.0.0-beta.2",
"proxy": "http://localhost:8080",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/styles": "^4.11.2",
"@monsonjeremy/react-leaflet": "^3.2.2",
"@reduxjs/toolkit": "^1.5.1",
"@sentry/react": "^6.3.6",
"@sentry/tracing": "^6.3.6",
"axios": "^0.24.0",
"clsx": "^1.1.0",
"connected-react-router": "^6.9.1",
"formik": "^2.1.4",
"formik-material-ui": "3.0.0",
"i18next": "^19.4.3",
"i18next-browser-languagedetector": "^4.1.1",
"leaflet": "^1.7.1",
"lodash": "^4.17.21",
"query-string": "^6.12.1",
"react": "^17.0.0",
"react-device-detect": "^2.2.2",
"react-dom": "^17.0.0",
"react-i18next": "^11.3.5",
"react-redux": "^7.2.6",
"react-router-dom": "^5.1.2",
"react-swipeable-views": "^0.13.9",
"react-transition-group": "^4.4.1",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"reselect": "^4.0.0",
"socket.io-client": "^2.3.0",
"yup": "^0.28.4"
},
"scripts": {
"start": "cross-env ESLINT_NO_DEV_ERRORS='true' react-scripts start",
"start:secure": "cross-env HTTPS=true react-scripts start",
"start:demo": "cross-env REACT_APP_DEMO_MODE=true ESLINT_NO_DEV_ERRORS=true react-scripts start",
"build": "react-scripts build",
"build:demo": "cross-env REACT_APP_DEMO_MODE=true react-scripts build",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"eject": "react-scripts eject",
"eslint": "./node_modules/.bin/eslint . --ext .js,.jsx,.ts,.tsx",
"doc": "typedoc --exclude \"**/*.+(spec|d).*\" --out public/doc/react --entryPoints src",
"postversion": "./scripts/update_version.sh ./src/config/index.ts $npm_package_version"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@redux-devtools/core": "^3.9.0",
"@testing-library/dom": "^7.22.2",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.3",
"@testing-library/user-event": "^12.1.1",
"@types/css-mediaquery": "^0.1.1",
"@types/i18next": "^13.0.0",
"@types/jest": "^26.0.10",
"@types/leaflet": "^1.5.17",
"@types/lodash": "^4.14.168",
"@types/node": "^14.6.0",
"@types/query-string": "^6.3.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-i18next": "^8.1.0",
"@types/react-redux": "^7.1.20",
"@types/react-router-dom": "^5.1.5",
"@types/react-swipeable-views": "^0.13.0",
"@types/react-transition-group": "^4.4.0",
"@types/redux-mock-store": "^1.0.2",
"@types/socket.io-client": "^1.4.34",
"@types/yup": "^0.29.5",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"cross-env": "^7.0.2",
"css-mediaquery": "^0.1.2",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.0.2",
"eslint-plugin-standard": "^4.0.1",
"jest-environment-jsdom-sixteen": "^1.0.3",
"react-scripts": "^4.0.0",
"redux-mock-store": "^1.5.4",
"typedoc": "^0.21.0",
"typescript": "^4.2.0"
},
"resolutions": {
"tmpl": ">=1.0.5",
"nth-check": ">=2.0.1",
"glob-parent": ">=5.1.2",
"browserslist": ">=4.16.5",
"immer": ">=9.0.6",
"url-parse": ">=1.5.8",
"follow-redirects": ">=1.14.7"
}
}