-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
75 lines (75 loc) · 2.04 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
{
"name": "@iobroker/dev-server",
"version": "0.7.3",
"description": "Single package development server for ioBroker",
"main": "dist/index.js",
"bin": {
"dev-server": "dist/index.js",
"iobroker-dev-server": "dist/index.js"
},
"files": [
"dist/*.js"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf ./dist",
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json --watch",
"check": "tsc --noEmit",
"lint": "eslint --ext .ts src/",
"release": "release-script"
},
"author": "UncleSamSwiss",
"license": "MIT",
"devDependencies": {
"@alcalzone/release-script": "^3.7.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@types/browser-sync": "^2.29.0",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/iobroker": "^4.0.5",
"@types/node": "^20.11.30",
"@types/nodemon": "^1.19.6",
"@types/ps-tree": "^1.1.6",
"@types/rimraf": "^4.0.5",
"@types/semver": "^7.5.8",
"@types/table": "^6.3.2",
"@types/ws": "^8.5.10",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"@iobroker/testing": "^4.1.1",
"acorn": "^8.11.3",
"axios": "^1.6.8",
"boxen": "^5.1.2",
"browser-sync": "^2.29.3",
"bs-html-injector": "^3.0.3",
"chalk": "^4.1.2",
"chokidar": "^3.6.0",
"enquirer": "^2.4.1",
"express": "^4.19.2",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"http-proxy-middleware": "^2.0.6",
"nodemon": "^3.1.0",
"ps-tree": "^1.2.0",
"rimraf": "^5.0.5",
"semver": "^7.6.0",
"source-map": "^0.7.4",
"table": "^6.8.2",
"ws": "^8.16.0",
"yargs": "^17.7.2"
}
}