-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.43 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
{
"name": "pine-beetle-frontend",
"version": "3.0.0",
"description": "Pine Beetle Prediction",
"main": "src/index.js",
"repository": "https://github.com/dali-lab/pine-beetle-frontend",
"author": "Thomas Monfre <[email protected]>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development webpack serve",
"lint": "eslint src --cache",
"ci:lint": "eslint src --rule 'react-hooks/exhaustive-deps: 0'",
"build": "npm clean; NODE_ENV=production webpack --color --progress; cp src/_redirects dist/_redirects",
"clean": "rimraf dist"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"css-loader": "^6.7.3",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss": "^8.4.20",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^7.8.3",
"react-refresh": "^0.14.0",
"sass": "^1.49.7",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"axios": "^1.2.1",
"chart.js": "^2.9.4",
"chartjs-top-round-bar": "^1.0.1",
"mapbox-gl": "^2.11.1",
"mapbox-print-pdf": "^0.4.3",
"prop-types": "^15.8.1",
"react": "^16.8.6",
"react-chartjs-2": "^2.10.0",
"react-circular-progressbar": "^2.0.3",
"react-dom": "^16.8.6",
"react-ga": "^3.3.0",
"react-lottie": "^1.2.3",
"react-modal": "^3.11.2",
"react-read-more-read-less": "^1.0.7",
"react-redux": "^7.0.2",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-tooltip": "^4.2.10",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"overrides": {
"canvg": "^3.0.9"
}
}