-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
123 lines (123 loc) · 4.39 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
{
"name": "imagery-explorer-apps",
"version": "1.3.0",
"description": "A collection of Imagery Explorer applications developed by the Esri's Living Atlas team.",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests",
"start:landsat": "webpack serve --mode development --open --env app=landsatexplorer mute=true",
"start:landcover": "webpack serve --mode development --open --env app=landcoverexplorer",
"start:sentinel1": "webpack serve --mode development --open --env app=sentinel1explorer",
"start:sentinel2": "webpack serve --mode development --open --env app=sentinel2explorer",
"start:spectral-sampling-tool": "webpack serve --mode development --open --env app=spectral-sampling-tool",
"start:surface-temp": "webpack serve --mode development --open --env app=landsat-surface-temp",
"build:landsat": "webpack --mode production --env app=landsatexplorer",
"build:landcover": "webpack --mode production --env app=landcoverexplorer",
"build:sentinel1": "webpack --mode production --env app=sentinel1explorer",
"build:sentinel2": "webpack --mode production --env app=sentinel2explorer",
"build:spectral-sampling-tool": "webpack --mode production --env app=spectral-sampling-tool",
"build:surface-temp": "webpack --mode production --env app=landsat-surface-temp",
"prepare": "husky install",
"e2e:landsat": "npx playwright test --config e2e/playwright.landsat.config.ts",
"e2e:sentinel1": "npx playwright test --config e2e/playwright.sentinel1.config.ts"
},
"lint-staged": {
"src/**/*.{ts,tsx,json}": [
"prettier --write",
"eslint src --fix",
"jest --bail --findRelatedTests --passWithNoTests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Esri/imagery-explorer-apps.git"
},
"keywords": [
"landsat",
"remote-sensing",
"sentinel-1",
"sentinel-2",
"landcover",
"esri",
"imagery-explorer-apps",
"living-atlas"
],
"author": "ArcGIS Living Atlas of the World",
"license": "ISC",
"bugs": {
"url": "https://github.com/Esri/imagery-explorer-apps/issues"
},
"homepage": "https://github.com/Esri/imagery-explorer-apps",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@babel/runtime": "^7.25.0",
"@playwright/test": "^1.45.0",
"@testing-library/react": "^14.0.0",
"@types/classnames": "^2.2.10",
"@types/jest": "^29.5.11",
"@types/node": "^20.14.9",
"@types/react-redux": "^7.1.34",
"@types/react-responsive": "^8.0.2",
"@types/shortid": "^0.0.29",
"@typescript-eslint/eslint-plugin": "6.12",
"@typescript-eslint/parser": "6.12",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"dotenv": "^16.4.5",
"eslint": "8.54",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "8.4",
"postcss-loader": "7.3",
"postcss-preset-env": "8.4",
"prettier": "^2.7.1",
"source-map-loader": "^3.0.0",
"style-loader": "^4.0.0",
"tailwindcss": "3.3",
"terser-webpack-plugin": "^5.3.10",
"ts-node": "^10.9.1",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@arcgis/core": "^4.31.6",
"@esri/arcgis-rest-feature-service": "^4.0.4",
"@reduxjs/toolkit": "2.5",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@vannizhang/images-to-video-converter-client": "^1.1.13",
"@vannizhang/react-d3-charts": "^1.0.28",
"classnames": "^2.2.6",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"helper-toolkit-ts": "^1.2.1",
"jszip": "^3.10.1",
"nanoid": "^5.0.9",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-redux": "9.2",
"redux": "^5.0.1"
},
"browserslist": [
"defaults"
]
}