-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 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
{
"name": "home-automation-backend",
"version": "1.4.0",
"description": "Provides a real-time API for reading and writing to your home's devices",
"main": "./app/index.js",
"type": "module",
"bin": {
"smart_home_backend": "app/index.js"
},
"engines": {
"node": ">=16.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cjk/smart-home-backend.git"
},
"keywords": ["node", "knx", "real-time", "websockets", "pubsub", "automation", "realtime"],
"author": "Claus Klingberg <[email protected]>",
"license": "GPL-2.0",
"homepage": "https://github.com/cjk/smart-home-backend#readme",
"dependencies": {
"date-fns": "^2.29.3",
"debug": "^4.4.0",
"del": "^8.0.0",
"dotenv": "^16.4.7",
"eibd": "^0.4.2",
"gun": "^0.9.9999991",
"kefir": "^3.8.8",
"luxon": "^1.6.2",
"ramda": "^0.30.1",
"suncalc": "^1.9.0",
"supports-color": "^10.0.0"
},
"devDependencies": {
"@babel/cli": "~7.26.4",
"@babel/core": "~7.26.7",
"@babel/eslint-parser": "~7.26.5",
"@babel/preset-flow": "~7.25.9",
"@babel/register": "~7.25.9",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"eslint": "^9.19.0",
"eslint-config-recommended": "^4.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-unicorn": "^56.0.1",
"flow-bin": "^0.259.1",
"globals": "^15.14.0",
"nodemon": "~3.1.9"
},
"scripts": {
"build": "npx babel src --out-dir app",
"dev": "env DEBUG='smt:*,error,debug' PORT=8001 LOG_LEVEL=${LOG_LEVEL-debug} NODE_ENV=development node -r dotenv/config ./app/index.js",
"prod": "env DEBUG='error' PORT=8001 LOG_LEVEL=${LOG_LEVEL-info} NODE_ENV=production node -r dotenv/config ./app/index.js",
"watch": "npx babel src --watch --out-dir app"
},
"nodemonConfig": {
"ignore": ["src/*"],
"delay": "2000"
}
}