-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
82 lines (82 loc) · 2.72 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
{
"name": "@iobroker/adapter-react-v5",
"version": "7.2.4",
"description": "React classes to develop admin interfaces for ioBroker with react.",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"scripts": {
"prepublishOnly": "echo \"Error: publish from dist directory and write 'npm run build'\" && exit 1",
"build:ts": "tsc -p tsconfig.build.json",
"build": "node tasks --0-clean && npm run build:ts && node tasks --2-copy && node tasks --3-patchReadme",
"release": "release-script --noPush --yes --lf",
"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",
"0-clean": "node tasks --0-clean",
"1-build": "tsc -p tsconfig.build.json",
"2-copy": "node tasks --2-copy",
"3-patchReadme": "node tasks --3-patchReadme",
"npm": "npm i -f",
"lint": "eslint -c eslint.config.mjs src",
"test": "ts-node test/testSchema.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioBroker/adapter-react-v5.git"
},
"publishConfig": {
"access": "public"
},
"module": "./index.js",
"keywords": [
"iobroker",
"adapter",
"iot"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ioBroker/adapter-react-v5/issues"
},
"homepage": "https://github.com/ioBroker/adapter-react-v5#readme",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@iobroker/socket-client": "^3.1.3",
"@iobroker/types": "^6.0.11",
"@iobroker/js-controller-common": "^6.0.11",
"@iobroker/js-controller-common-db": "^6.0.11",
"@mui/icons-material": "^6.1.9",
"@mui/material": "^6.1.9",
"@mui/x-date-pickers": "^7.19.0",
"@sentry/browser": "^8.33.1",
"cronstrue": "^2.50.0",
"react-color": "^2.19.3",
"react-colorful": "^5.6.1",
"react-cropper": "^2.3.3",
"react-dropzone": "^14.2.10",
"react-icons": "^5.3.0",
"react-inlinesvg": "^4.1.5"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/build-tools": "^2.0.13",
"@iobroker/eslint-config": "^0.1.6",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-flow": "^7.25.9",
"@babel/preset-react": "^7.26.3",
"@types/node": "^22.10.3",
"@types/react": "^18.3.12",
"@types/react-color": "^3.0.13",
"ajv": "^8.17.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}