-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "loxone-nuki-proxy",
"version": "1.0.0",
"description": "Nodejs helper to integrate Nuki Doorlocks in Loxone",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/rudyberends/loxone-nuki-proxy.git"
},
"main": "dist/server.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "nodemon",
"build": "rimraf ./dist && tsc",
"start": "node dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"release": {
"branches": [
"main"
]
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"winston": "^3.14.2",
"winston-transport": "^4.8.0"
}
}