forked from ioBroker/ioBroker.vis
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 3.33 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
89
90
91
92
93
{
"name": "iobroker.vis-2",
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {
"@iobroker/types-vis-2": "file:packages/types-vis-2",
"iobroker.vis-2": "file:packages/iobroker.vis-2"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-lerna": "^3.7.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@craco/craco": "^7.1.0",
"@devbookhq/splitter": "^1.4.2",
"@iobroker/adapter-react-v5": "^6.1.8",
"@iobroker/type-detector": "^4.0.1",
"@iobroker/types": "^6.0.9",
"@iobroker/vis-2-widgets-react-dev": "^3.0.7",
"@iobroker/vis-2-widgets-testing": "^1.0.4",
"@types/react-color": "^3.0.12",
"@material-icons/svg": "^1.0.33",
"@mui/icons-material": "^5.16.6",
"@mui/material": "^5.16.6",
"@mui/x-date-pickers": "^7.12.0",
"@reduxjs/toolkit": "^2.2.7",
"@sentry/browser": "^8.22.0",
"@tsconfig/node18": "^18.2.4",
"@types/dom-speech-recognition": "^0.0.4",
"@types/jquery": "^3.5.30",
"@types/mocha": "^10.0.7",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"ace-builds": "^1.35.4",
"chai": "^4.5.0",
"craco-module-federation": "^1.1.0",
"dayjs": "^1.11.12",
"echarts": "^5.5.1",
"echarts-for-react": "^3.0.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eqeqeq-fix": "^1.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"gulp": "^4.0.2",
"html-to-image": "^1.11.11",
"iobroker.web": "*",
"jquery-ui": "^1.13.3",
"lerna": "^8.1.7",
"mime": "^4.0.4",
"mocha": "^10.7.0",
"moment": "^2.30.1",
"mui-nested-menu": "^3.4.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-ace": "^12.0.0",
"react-beautiful-dnd": "^13.1.1",
"react-color": "^2.19.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-preview": "^8.0.3",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-icons": "^5.2.1",
"react-scripts": "^5.0.1",
"redux": "^5.0.1",
"sass": "^1.77.8",
"typescript": "^5.5.4",
"unzipper": "^0.12.3",
"uuid": "^10.0.0"
},
"scripts": {
"build": "npm run clean && lerna run build",
"clean": "lerna run clean",
"install-monorepo": "npm i -f && npm i -w packages/iobroker.vis-2 -f && npm i -w packages/types-vis-2 -f",
"npm": "npm run install-monorepo",
"update-packages": "ncu --upgrade && cd package/iobroker.vis-2 && ncu --upgrade && cd package/iobroker.vis-2/src && ncu --upgrade && cd package/types-vis-2 && ncu --upgrade",
"start": "npm run start -w packages/iobroker.vis-2",
"release": "release-script",
"release-patch": "release-script patch --yes --no-update-lockfile --publishAll",
"release-minor": "release-script minor --yes --no-update-lockfile --publishAll",
"release-major": "release-script major --yes --no-update-lockfile --publishAll"
}
}