-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.36 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
{
"name": "iobroker.reacttest",
"version": "0.0.1",
"description": "testing adapter with react interface",
"author": "frankjoke <[email protected]>",
"homepage": "https://github.com/frankjoke/ioBroker.reacttest",
"license": "MIT",
"keywords": [
"ioBroker",
"template",
"Smart Home",
"home automation"
],
"contributors": [
"bluefox <[email protected]>",
"AlCalzone <[email protected]>",
"Apollon77 <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/frankjoke/ioBroker.reacttest.git"
},
"dependencies": {
"@iobroker/adapter-core": "^2.4.0"
},
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/polyfill": "^7.12.1",
"@iobroker/testing": "^2.4.2",
"@material-ui/core": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.57",
"@mdi/font": "^5.9.55",
"@reduxjs/toolkit": "^1.5.0",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/gulp": "^4.0.8",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.28",
"@types/proxyquire": "^1.3.28",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "^3.2.5",
"axios": "^0.21.1",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"classnames": "^2.2.6",
"cssnano": "^4.1.10",
"eslint": "^7.20.0",
"eslint-plugin-react": "^7.22.0",
"file-saver": "^2.0.5",
"gulp": "^4.0.2",
"i18next": "^19.8.9",
"material-icons": "^0.5.3",
"mocha": "^8.3.0",
"notistack": "^1.0.3",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"parcel-plugin-html-externals": "^0.2.0",
"parcel-plugin-static-files-copy": "^2.5.1",
"react": "^17.0.1",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dnd-multi-backend": "^6.0.2",
"react-dnd-touch-backend": "^11.1.3",
"react-dom": "^17.0.1",
"react-draggable": "^4.4.3",
"react-native": "^0.63.4",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"typescript": "^4.1.5"
},
"main": "main.js",
"browser": "admin/index.html",
"scripts": {
"devLocal:parcel": "parcel admin/index.html --open",
"buildLocal:Parcel": "parcel build admin/index.html --public-url ./ -d admin/build",
"watchLocal:parcel": "parcel watch admin/index.html",
"watch:parcel": "parcel admin/src/index.jsx -d admin/build",
"build:parcel": "parcel build admin/src/index.jsx -d admin/build",
"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:unit": "mocha test/unit --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"
},
"bugs": {
"url": "https://github.com/frankjoke/ioBroker.reacttest/issues"
},
"directories": {
"lib": "lib",
"test": "test"
},
"externals": {
"../../**/*": false
},
"source": [
"admin/assets/config.*",
"admin/index.html"
],
"staticFiles": {
"staticPath": [
{
"staticPath": "admin/assets",
"staticOutDir": ""
}
]
}
}