-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.21 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
{
"name": "iot-monolith",
"version": "1.0.0",
"description": "monolithic approach to Node.js-enabled home automation",
"main": "dist/index.js",
"scripts": {
"build:clean:watch": "npm run --silent clear && npm run --silent tsc:watch",
"build:clean": "npm run --silent clear && npm run --silent tsc",
"build:watch": "npm run --silent tsc:watch",
"build": "npm run --silent tsc",
"clear": "rm -rf dist",
"format:verify": "prettier --check '**/*.{js,json,ts}'",
"format:write": "prettier --write '**/*.{js,json,ts}'",
"lint:fix": "eslint --fix --ext js,ts src",
"lint:ts-only": "tsc --noEmit; eslint --ext ts src",
"lint": "tsc --noEmit; eslint --ext js,ts src",
"push": "git push origin HEAD --force && git push github HEAD --force",
"remote:deploy:watch": "scripts/remote-deploy-watch.sh",
"remote:deploy": "scripts/remote-deploy.sh",
"remote:restart:watch": "scripts/remote-restart-watch.sh",
"remote:restart": "scripts/remote-restart.sh",
"remote:watch": "scripts/remote-watch.sh",
"remote:view-persistence": "scripts/remote-view-persistence.sh",
"run": "LOG_LEVEL=7 LOG_TELEGRAM=0 node --use_strict --experimental-modules --enable-source-maps --stack-trace-limit=100",
"start:dev": "npm run --silent run dist/index.js",
"start:file": "npm run --silent run",
"start": "echo \"use systemd with 'iot-monolith.service'-file to start this service in a production environment\nfor testing purposes, use 'npm run start:dev'\"",
"tsc:watch": "tsc --watch",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "wslt@git.wurstsalat.cloud:IoT/iot-monolith.git"
},
"author": "Lennart Pelz <mail@mrpelz.de>",
"license": "UNLICENSED",
"devDependencies": {
"@types/node": "^14.14.22",
"@types/node-fetch": "^2.5.10",
"@types/suncalc": "^1.8.1",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-plugin-import": "^2.22.1",
"prettier": "^2.2.1",
"typescript": "^4.3.2"
},
"type": "module",
"dependencies": {
"node-fetch": "^2.6.1",
"prom-client": "^14.0.1",
"suncalc": "^1.8.0",
"ws": "^7.4.7"
}
}