forked from elewin/pi-weather-station
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.8 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
{
"name": "pi-weather-station-client",
"version": "1.0.0",
"description": "Client for pi-weather-station",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --progress --watch --mode development",
"prod": "webpack -p --env.BUILD_PRODUCTION=1"
},
"author": "Eric Lewin",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@iconify/icons-bx": "^1.0.3",
"@iconify/icons-carbon": "^1.0.4",
"@iconify/icons-dashicons": "^1.0.11",
"@iconify/icons-gridicons": "^1.0.6",
"@iconify/icons-ic": "^1.0.15",
"@iconify/icons-ion": "^1.0.13",
"@iconify/icons-map": "^1.0.5",
"@iconify/icons-wi": "^1.0.3",
"@iconify/react": "^1.1.3",
"autoprefixer": "^9.8.6",
"axios": "^0.19.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"chart.js": "^2.9.3",
"css-loader": "^4.2.1",
"date-fns": "^2.15.0",
"debounce": "^1.2.0",
"eslint": "^7.6.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^30.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"leaflet": "^1.6.0",
"postcss": "^7.0.32",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-chartjs-2": "^2.10.0",
"react-dom": "^16.13.1",
"react-leaflet": "^2.7.0",
"react-transition-group": "^4.4.1",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}