forked from maakbaas/esp8266-iot-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (45 loc) · 1.41 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
{
"name": "esp",
"version": "1.0.0",
"description": "ESP8266",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --mode=development --history-api-fallback",
"build": "webpack --mode=production",
"lint": "eslint \"./**/*.js\""
},
"author": "Johannes",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.1.0",
"css-loader": "^2.1.1",
"eslint": "^7.4.0",
"eslint-plugin-react": "^7.20.3",
"event-hooks-webpack-plugin": "^2.1.6",
"html-loader": "^0.5.5",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"mini-css-extract-plugin": "^0.5.0",
"url-loader": "^1.1.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"history": "^4.10.1",
"preact": "^10.4.0",
"prop-types": "^15.7.2",
"react-icons": "^4.2.0",
"react-router-dom": "^5.1.2",
"react-vis": "^1.11.7",
"styled-components": "^5.1.0",
"styled-normalize": "^8.0.7"
}
}