This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
generated from vannizhang/react-redux-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 3.73 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
{
"name": "land-cover-change",
"version": "1.0.0",
"description": "This application displays the land use/land cover (LULC) timeseries layer derived from ESA Sentinel-2 imagery at 10m resolution. ",
"main": "index.js",
"title": "Esri | Sentinel-2 Land Cover Explorer",
"scripts": {
"test": "jest --passWithNoTests",
"start": "webpack serve --mode development --open",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"lint-staged": {
"src/**/*.{ts,tsx,json}": [
"prettier --write",
"eslint src --fix",
"jest --bail --findRelatedTests --passWithNoTests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vannizhang/land-cover-explorer.git"
},
"keywords": [],
"author": "Jinnan Zhang",
"license": "ISC",
"bugs": {
"url": "https://github.com/vannizhang/land-cover-explorer/issues"
},
"homepage": "https://livingatlas.arcgis.com/landcoverexplorer/",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/runtime": "^7.14.6",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^7.3.1",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^7.3.1",
"@storybook/testing-library": "^0.0.13",
"@types/classnames": "^2.2.10",
"@types/jest": "^26.0.24",
"@types/react-redux": "^7.1.16",
"@types/react-responsive": "^8.0.2",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@vue/preload-webpack-plugin": "^2.0.0",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-storybook": "^0.6.4",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.3.3",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"husky": "^8.0.1",
"jest": "^26.6.3",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.4.35",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^9.3.0",
"prettier": "^2.7.1",
"source-map-loader": "^3.0.0",
"tailwind": "^4.0.0",
"tailwindcss": "^3.0.24",
"terser-webpack-plugin": "^5.1.3",
"typescript": "^4.9.5",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "4.10",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"@arcgis/core": "^4.28.10",
"@esri/arcgis-rest-feature-service": "^4.0.3",
"@esri/arcgis-rest-portal": "^4.1.0",
"@esri/arcgis-rest-request": "^4.1.1",
"@reduxjs/toolkit": "1.8",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@vannizhang/react-d3-charts": "^1.0.27",
"axios": "^1.6.7",
"classnames": "^2.2.6",
"date-fns": "^2.29.3",
"helper-toolkit-ts": "^1.1.13",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-redux": "^8.0.2",
"redux": "^4.1.0"
},
"browserslist": [
"defaults"
]
}