-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.98 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
{
"name": "mqtt-control-map",
"version": "1.0.0",
"author": "uwap <[email protected]>",
"description": "Control Devices via mqtt, visualized on a Map",
"scripts": {
"build": "webpack --bail --config webpack.config.js --mode production --env",
"dev": "webpack --bail --config webpack.config.js --mode development --env",
"watch": "webpack-dev-server --open --config webpack.config.js --mode development --env",
"travis": "./travis.sh",
"lint": "eslint --ext js --ext jsx src/ config/",
"precommit": "yarn lint"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@mdi/react": "^1.4.0",
"@mui/material": "^5.10.15",
"@mui/styles": "^5.10.15",
"leaflet": "^1.5.1",
"mqtt": "^4.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.1.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0-rc.1",
"@babel/preset-react": "^7.0.0-rc.1",
"@mdi/js": "^7.0.96",
"babel-eslint": "^10.0.2",
"babel-loader": "^9.1.0",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.6.0",
"css-loader": "^6.7.2",
"eslint": "^8.28.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.0",
"flow": "^0.2.3",
"flow-bin": "^0.193.0",
"flow-typed": "^3.2.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.2",
"lodash-es": "^4.17.15",
"process": "^0.11.10",
"style-loader": "^3.3.1",
"url": "^0.11.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1",
"webpack-shell-plugin-next": "^2.3.1"
},
"license": "MIT"
}