-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 2.92 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
{
"name": "requests-tool",
"version": "0.1.0",
"homepage": ".",
"private": true,
"dependencies": {
"@craco/craco": "^6.1.2",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@geoman-io/leaflet-geoman-free": "^2.6.0",
"@headlessui/react": "^1.2.0",
"@heroicons/react": "^1.0.1",
"@reduxjs/toolkit": "^1.3.6",
"@sentinel-hub/evalscript-code-editor": "^1.0.40",
"@tippyjs/react": "^4.2.6",
"@tmcw/togeojson": "^4.1.0",
"@turf/area": "^6.0.1",
"@turf/bbox": "^6.0.1",
"@turf/bbox-polygon": "^6.0.1",
"@turf/intersect": "^6.1.3",
"@turf/union": "^6.5.0",
"axios": "^0.21.1",
"client-oauth2": "^4.3.0",
"codemirror": "^5.61.1",
"d3-array": "^2.11.0",
"d3-axis": "^2.0.0",
"d3-scale": "^3.2.3",
"d3-selection": "^2.0.0",
"d3-shape": "^2.1.0",
"georaster": "^1.5.4",
"georaster-layer-for-leaflet": "^1.0.2",
"jwt-decode": "^2.2.0",
"leaflet": "^1.6.0",
"lodash.get": "^4.4.2",
"lodash.omit": "^4.5.0",
"moment": "^2.27.0",
"mousetrap": "^1.6.5",
"proj4": "^2.6.2",
"react": "^16.14.0",
"react-codemirror2": "^7.2.1",
"react-day-picker": "^7.4.8",
"react-debounce-render": "^6.0.0",
"react-dom": "^16.14.0",
"react-redux": "^7.2.0",
"react-scripts": "^4.0.3",
"redux-dynamic-middlewares": "^2.0.0",
"tokml": "^0.4.0",
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"watch:sass": "node-sass sass/main.scss src/App2.css -w",
"lint": "eslint --max-warnings 0 --ext .js src/",
"lint-style": "stylelint --max-warnings 0 \"sass/**/*.scss\"",
"prettier": "prettier --write \"src/**/*.{js,json,jsx}\"",
"prettier-style": "stylelint --fix \"sass/**/*.scss\""
},
"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": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"autoprefixer": "^9.8.8",
"husky": "^4.2.5",
"node-sass": "^4.14.1",
"postcss": "^7.0.39",
"prettier": "2.0.5",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.17",
"typescript": "4.5.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run lint-style"
}
}
}