-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 2.67 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
{
"name": "iot-webinterface",
"version": "1.0.0",
"description": "web interface for \"iot-monolith\" using web-components written with the goal of having absolutely no build-process.",
"main": "dist/index.js",
"scripts": {
"build:clean:serve": "npm run --silent clear:build && tsc-watch --build tsconfig.json src/workers/tsconfig.json --watch --onSuccess \"npm run --silent pack:all\"",
"build:clean:watch": "npm run --silent clear:build && tsc-watch --build tsconfig.json src/workers/tsconfig.json --watch --onSuccess \"npm run --silent pack:transform\"",
"build:clean": "npm run --silent clear:build && npm run --silent tsc && npm run --silent pack:transform",
"build:serve": "npm run --silent clear && tsc-watch --build tsconfig.json src/workers/tsconfig.json --watch --onSuccess \"npm run --silent pack:all\"",
"build:watch": "npm run --silent clear && tsc-watch --build tsconfig.json src/workers/tsconfig.json --watch --onSuccess \"npm run --silent pack:transform\"",
"build": "npm run --silent clear && npm run --silent tsc && npm run --silent pack:transform",
"clear:build": "rm -rf build dist",
"clear": "rm -rf dist",
"deploy": "scripts/deploy.sh",
"format:verify": "prettier --check '**/*.{js,jsx,json,ts,tsx}'",
"format:write": "prettier --write '**/*.{js,jsx,json,ts,tsx}'",
"lint:fix": "eslint --fix --ext js,jsx,ts,tsx src",
"lint:ts-only": "tsc --project tsconfig.json --noEmit; tsc --project src/workers/tsconfig.json --noEmit; eslint --ext ts,tsx src",
"lint": "tsc --project tsconfig.json --noEmit; tsc --project src/workers/tsconfig.json --noEmit; eslint --ext js,jsx,ts,tsx src",
"pack:all": "scripts/pack.js transform,serve",
"pack:serve": "scripts/pack.js serve",
"pack:transform": "scripts/pack.js transform",
"push": "git push origin HEAD --force && git push github HEAD --force",
"tsc:watch": "tsc --build tsconfig.json src/workers/tsconfig.json --watch",
"tsc": "tsc --build tsconfig.json src/workers/tsconfig.json"
},
"repository": {
"type": "git",
"url": "[email protected]:IoT/iot-webinterface.git"
},
"author": "Lennart Pelz <[email protected]>",
"license": "UNLICENSED",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react-hooks": "^4.2.0",
"native-esm-transform": "git+ssh://[email protected]/mrpelz/native-esm-transform",
"prettier": "^2.2.1",
"tsc-watch": "^4.4.0",
"typescript": "^4.3.2"
},
"type": "module",
"dependencies": {
"goober": "^2.0.39",
"hls.js": "^1.2.0",
"preact": "^10.5.14"
}
}