-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 3.75 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "iobroker.trashmaster",
"version": "0.0.1",
"description": "Get collection dates from your city or municipality's waste management company (if they use abfall.io's API). Use the data for reminders, creation of a waste calendar (among other things for visualization with VIS2 through included widgets ).",
"author": {
"name": "formifan2002",
"email": "d.behrendt@web.de"
},
"homepage": "https://github.com/formifan2002/ioBroker.trashmaster",
"license": "MIT",
"keywords": [
"waste",
"waste calendar",
"garbage",
"garbage calendar",
"waste management",
"VIS2 widget",
"reminder",
"Muell",
"Abfall",
"Muellkalender",
"Abfallkalender"
],
"repository": {
"type": "git",
"url": "https://github.com/formifan2002/ioBroker.trashmaster.git"
},
"engines": {
"node": ">= 16"
},
"dependencies": {
"@iobroker/adapter-core": "^2.6.8",
"@mui/system": "5.12.1",
"@tsconfig/node16": "^1.0.3",
"axios": "^1.3.4",
"form-data": "^4.0.0",
"jsdom": "^21.0.0"
},
"devDependencies": {
"@alcalzone/release-script": "^3.5.9",
"@alcalzone/release-script-plugin-iobroker": "^3.5.9",
"@alcalzone/release-script-plugin-license": "^3.5.9",
"@alcalzone/release-script-plugin-manual-review": "^3.5.9",
"@iobroker/adapter-dev": "^1.2.0",
"@iobroker/adapter-react-v5": "^4.0.24",
"@iobroker/testing": "^4.1.0",
"@mui/icons-material": "^5.11.11",
"@mui/lab": "^5.0.0-alpha.122",
"@mui/material": "^5.12.1",
"@mui/styles": "^5.12.0",
"@mui/x-data-grid": "^6.0.4",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.3",
"@types/proxyquire": "^1.3.28",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.11",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.9",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"gulp": "^4.0.2",
"i18next": "^22.4.13",
"iobroker.vis": "1.4.16",
"iobroker.vis-inventwo": "3.3.3",
"iobroker.web": "5.5.3",
"iobroker.whatsapp-cmb": "0.2.3",
"mocha": "^10.2.0",
"prettier": "^2.8.3",
"proxyquire": "^2.1.3",
"react": "^18.1.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0",
"sinon": "^15.0.1",
"sinon-chai": "^3.7.0",
"typescript": "~5.0.2"
},
"main": "main.js",
"files": [
"admin{,/!(src)/**}/!(tsconfig|tsconfig.*|.eslintrc).json",
"admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}",
"admin/build/",
"lib/",
"widgets/",
"io-package.json",
"LICENSE",
"main.js"
],
"scripts": {
"dev-server upload ": "dev-server upload",
"dev-server debug ": "dev-server debug",
"dev-server watch ": "dev-server watch",
"dev-server watch noInstall": "dev-server watch --noInstall",
"translate": "translate-adapter",
"translateWidget": "yarn run translate -b src-widgets/src/i18n/en.json",
"prebuild": "rimraf admin/build",
"build": "build-adapter react",
"watch": "build-adapter react --watch",
"test:js": "mocha --config test/mocharc.custom.json \"{!(node_modules|test)/**/*.test.js,*.test.js,test/**/test!(PackageFiles|Startup).js}\"",
"test:package": "mocha test/package --exit",
"test:integration": "mocha test/integration --exit",
"test": "npm run test:js && npm run test:package",
"check": "tsc --noEmit -p tsconfig.check.json",
"lint": "eslint --ext .js,.jsx .",
"release": "release-script"
},
"bugs": {
"url": "https://github.com/formifan2002/ioBroker.trashmaster/issues"
},
"readmeFilename": "README.md",
"packageManager": "yarn@3.5.0"
}