-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.82 KB
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
{
"name": "hm-node-runner",
"version": "0.9.1",
"description": "A homematic nodejs script runner",
"author": {
"name": "Jens Zech",
"email": "jzech@gmx.de",
"url": "https://github.com/jenszech"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jenszech/"
},
"license": "MIT",
"main": "src/main.ts",
"scripts": {
"start": "node ./lib/hm-node-runner",
"start:ts": "cross-env NODE_ENV=dev ts-node src/main.ts",
"start:dev": "set NODE_ENV=dev nodemon src/main.ts",
"deploy": "pm2 restart hm-node-runner",
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags && npm run build && git add -A lib && git push"
},
"dependencies": {
"app-root-path": "^3.1.0",
"axios": "^1.9.0",
"config": "^4.0.0",
"easy-crc": "^1.1.0",
"express": "^5.1.0",
"homematic-js-xmlapi": "^0.8.1",
"influx": "^5.10.0",
"km200-api": "^0.2.3",
"serialport": "^10.4.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@serialport/parser-inter-byte-timeout": "^10.3.0",
"@types/app-root-path": "^1.2.6",
"@types/config": "^3.3.5",
"@types/express": "^5.0.3",
"@types/express-serve-static-core": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.30",
"@types/serialport": "^8.0.3",
"cross-env": "^7.0.3",
"expect": "^29.7.0",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.8.3"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}