-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
105 lines (105 loc) · 3.47 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": "world-imagery-wayback",
"version": "1.0.0",
"title": "World Imagery Wayback",
"description": "Wayback imagery is a digital archive of the World Imagery basemap, enabling users to access different versions of World Imagery captured over the years. Each record in the archive represents World Imagery as it existed on the date new imagery was published. Wayback currently supports all updated versions of World Imagery dating back to February 20, 2014.",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests",
"start": "webpack-dev-server --mode development --open",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"lint": "eslint src --ext .tsx,.ts --cache --fix",
"format": "prettier --write src/**/*.{ts,tsx,json}",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{ts,tsx,json}": [
"prettier --write",
"eslint src --fix",
"jest --bail --findRelatedTests --passWithNoTests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vannizhang/wayback.git"
},
"keywords": [
"Wayback",
"World Imagery",
"Living Atlas of the World",
"ESRI"
],
"author": "ArcGIS Living Atlas of the World",
"license": "ISC",
"bugs": {
"url": "https://github.com/vannizhang/wayback/issues"
},
"homepage": "https://livingatlas.arcgis.com/wayback/",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@babel/runtime": "^7.25.0",
"@types/d3": "^7.4.3",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@types/react-helmet": "^6.1.0",
"@types/react-redux": "^7.1.25",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "6.12",
"@typescript-eslint/parser": "6.12",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^3.0.0",
"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.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.24",
"postcss-loader": "^7.3.2",
"postcss-preset-env": "8.4",
"prettier": "^2.8.8",
"source-map-loader": "^1.1.2",
"style-loader": "^4.0.0",
"tailwindcss": "^3.3.2",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@arcgis/core": "4.28",
"@esri/arcgis-rest-feature-service": "^4.0.4",
"@esri/arcgis-rest-request": "^4.2.0",
"@reduxjs/toolkit": "^1.9.5",
"@vannizhang/images-to-video-converter-client": "^1.1.13",
"@vannizhang/wayback-core": "^1.0.8",
"axios": "^1.6.2",
"classnames": "^2.2.6",
"d3": "^7.8.5",
"helper-toolkit-ts": "^1.1.14",
"nanoid": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-redux": "^8.0.7",
"redux": "^4.2.1",
"shortid": "^2.2.16"
}
}