forked from astrosat/safers-dashboard-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.16 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
{
"name": "safers-dashboard",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"@turf/turf": "^6.5.0",
"axios": "^1.3.4",
"bootstrap": "^5.1.3",
"check-prop-types": "^1.1.2",
"country-list": "^2.2.0",
"deck.gl": "^8.8.26",
"dompurify": "^3.0.1",
"express": "^4.17.3",
"formik": "^2.2.9",
"i18next": "^22.4.10",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-resources-to-backend": "^1.1.2",
"jest-html-reporters": "^3.1.3",
"js-cookie": "^3.0.1",
"json-format-highlight": "^1.0.4",
"lodash": "^4.17.21",
"mapbox-gl": "^2.7.0",
"metismenujs": "^1.2.1",
"moment": "^2.29.1",
"msw": "^1.1.0",
"nebula.gl": "^1.0.3",
"query-string": "^8.1.0",
"rc-pagination": "^3.1.15",
"react": "^18.2.0",
"react-contextmenu": "^2.14.0",
"react-datepicker": "^4.7.0",
"react-datetime": "^3.1.1",
"react-dom": "^18.2.0",
"react-drawer": "^1.3.4",
"react-flatpickr": "^3.10.9",
"react-i18next": "^12.2.0",
"react-image-lightbox": "^5.1.4",
"react-map-gl": "^5.3.0",
"react-map-gl-draw": "^1.0.3",
"react-meta-tags": "^1.0.1",
"react-rangeslider": "^2.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.2",
"react-scripts": "^5.0.1",
"react-tooltip": "^5.8.3",
"reactstrap": "^9.0.1",
"redux": "^4.1.2",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1",
"sass": "^1.49.8",
"simplebar-react": "^3.2.1",
"toastr": "^2.1.4",
"victory": "^36.6.4",
"victory-chart": "^36.6.4",
"web-vitals": "^3.1.1",
"wkt": "^0.1.1",
"yup": "^1.0.2"
},
"scripts": {
"start": "node server/server.js",
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --transformIgnorePatterns 'node_modules/(?!axios)/'",
"test:ci": "CI=true JEST_HTML_REPORTERS_INLINE_SOURCE=true react-scripts test --transformIgnorePatterns 'node_modules/(?!axios)/' --reporters=default --reporters=jest-html-reporters",
"coverage": "react-scripts test --env=jsdom --watchAll=false --coverage",
"eject": "react-scripts eject",
"cypress:open": "cypress open",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"ajv": "^8.10.0",
"cypress": "^12.7.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.8.3",
"redux-mock-store": "^1.5.4",
"source-map-explorer": "^2.5.2"
},
"proxy": "http://localhost:8000",
"msw": {
"workerDirectory": "public"
}
}