-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.68 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
{
"name": "@iobroker/dm-gui-components",
"version": "0.1.0",
"description": "ReactJS components to develop admin interface for ioBroker device manager.",
"author": {
"name": "Jey Cee",
"email": "iobroker@all-smart.net"
},
"contributors": [
{
"name": "UncleSamSwiss"
},
{
"name": "bluefox",
"email": "dogafox@gmail.com"
}
],
"scripts": {
"prepublishOnly": "echo \"Error: publish from dist directory and write npm run build\" && exit 1",
"build": "tsc -p tsconfig.build.json && node publish.js",
"release": "release-script",
"release-patch": "release-script patch --yes --lf",
"release-minor": "release-script minor --yes --lf",
"release-major": "release-script major --yes --lf",
"update-packages": "ncu --upgrade",
"npm": "npm i -f",
"lint": "eslint --ext=.jsx,.js,.tsx,.ts src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioBroker/dm-gui-components.git"
},
"publishConfig": {
"access": "public"
},
"module": "./index.js",
"keywords": [
"iobroker",
"adapter",
"iot"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ioBroker/dm-gui-components/issues"
},
"homepage": "https://github.com/ioBroker/dm-gui-components#readme",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@iobroker/adapter-react-v5": "^4.9.10",
"@mui/icons-material": "^5.15.11",
"@mui/material": "5.14.14",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-eqeqeq-fix": "^1.0.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5"
},
"devDependencies": {
"@alcalzone/release-script": "^3.7.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-flow": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@babel/plugin-syntax-jsx": "^7.23.3",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@iobroker/dm-utils": "^0.1.8",
"babel": "^6.23.0",
"babel-plugin-inline-json-import": "^0.3.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-eqeqeq-fix": "^1.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}