forked from sentinel-hub/EOBrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 4.49 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "eobrowser3",
"version": "3.0.0",
"homepage": ".",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^5.11.2",
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@geoman-io/leaflet-geoman-free": "^2.11.2",
"@googlemaps/js-api-loader": "^1.12.1",
"@mapbox/geojson-area": "^0.2.2",
"@mapbox/sphericalmercator": "^1.1.0",
"@mapbox/togeojson": "^0.16.0",
"@reduxjs/toolkit": "^1.0.4",
"@sentinel-hub/sentinelhub-js": "^0.2.69",
"@turf/bbox-polygon": "^6.5.0",
"@turf/boolean-point-in-polygon": "^6.0.1",
"@turf/center": "^6.0.1",
"@turf/distance": "^6.5.0",
"@turf/intersect": "^6.5.0",
"@turf/length": "^6.0.2",
"@turf/union": "^6.3.0",
"axios": "^0.21.3",
"client-oauth2": "^4.2.5",
"escodegen": "^2.0.0",
"esprima": "^4.0.1",
"file-saver": "^1.3.3",
"geotiff": "^1.0.0-beta.16",
"gifshot": "git+https://gitext.sinergise.com/team-6/gifshot.git",
"jshint": "^2.13.1",
"jszip": "^3.2.2",
"jwt-decode": "^2.2.0",
"leaflet": "^1.6.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash.round": "^4.0.4",
"lodash.values": "^4.3.0",
"maplibre-gl": "^1.15.2",
"moment": "^2.24.0",
"nprogress": "^0.2.0",
"paper": "0.12.12",
"proj4": "^2.6.2",
"rc-slider": "^8.6.1",
"react": "^16.8.3",
"react-alert": "^2.4.0",
"react-alert-async": "^1.2.0",
"react-app-polyfill": "^2.0.0",
"react-autocomplete": "^1.8.1",
"react-checkbox-group": "^3.0.1",
"react-codemirror": "^1.0.0",
"react-compound-slider": "^2.5.0",
"react-day-picker": "^7.1.9",
"react-device-detect": "^2.0.0",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dnd-multi-backend": "^6.0.2",
"react-dnd-touch-backend": "^11.1.3",
"react-dom": "^16.8.3",
"react-dragula": "^1.1.17",
"react-dropzone": "^4.1.2",
"react-flags-select": "^2.1.2",
"react-joyride": "2.3.2",
"react-leaflet": "^2.6.0",
"react-markdown": "^4.3.1",
"react-onclickoutside": "^6.8.0",
"react-radio-group": "^3.0.3",
"react-redux": "^7.1.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-toggle": "^4.0.2",
"react-tooltip-lite": "^1.5.2",
"react-transition-group": "^1.2.1",
"rodal": "^1.7.0",
"sass": "^1.39.0",
"semiotic": "^1.11.1",
"terraformer": "^1.0.8",
"terraformer-wkt-parser": "^1.1.2",
"three": "^0.120.1",
"ttag": "^1.7.22",
"turf-inside": "^3.0.12",
"urijs": "^1.18.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"storybook": "start-storybook -p 6006",
"debug-translations": "cross-env REACT_APP_DEBUG_TRANSLATIONS=true react-scripts start",
"test": "react-scripts test",
"lint": "eslint --max-warnings 0 --ext .js src/ scripts/ && stylelint --max-warnings 0 \"src/**/*.css\" \"src/**/*.scss\"",
"lint-js": "eslint --max-warnings 0 --ext .js src/ scripts/",
"lint-css": "stylelint --max-warnings 0 \"src/**/*.css\" \"src/**/*.scss\"",
"prettier": "prettier --write \"src/**/*.{js,json}\" \"scripts/**/*.{js,json}\" && stylelint --fix \"src/**/*.css\" \"src/**/*.scss\"",
"prettier-js": "prettier --write \"src/**/*.{js,json}\" \"scripts/**/*.{js,json}\"",
"prettier-css": "stylelint --fix \"src/**/*.css\" \"src/**/*.scss\"",
"translate": "node -r esm scripts/translate",
"update-previews": "node -r esm scripts/update-previews"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@storybook/addon-actions": "^5.0.10",
"@storybook/react": "^5.0.10",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"axios-mock-adapter": "^1.18.1",
"cross-env": "^7.0.2",
"dotenv": "^10.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"esm": "^3.2.25",
"husky": "^3.1.0",
"jest-canvas-mock": "^2.3.1",
"prettier": "^2.3.1",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.19.0",
"ttag-cli": "^1.8.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}