-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.85 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
{
"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.1.0",
"del": "^5.1.0",
"dotenv": "^16.0.3",
"eibd": "^0.4.2",
"gun": "~0.9.9999991",
"kefir": "^3.8.8",
"luxon": "^1.6.2",
"ramda": "^0.28.0",
"suncalc": "^1.9.0",
"supports-color": "^7.1.0"
},
"devDependencies": {
"@babel/cli": "~7.19.3",
"@babel/core": "~7.20.5",
"@babel/eslint-parser": "~7.19.1",
"@babel/preset-flow": "~7.18.6",
"@babel/register": "~7.18.9",
"eslint": "^8.30.0",
"eslint-config-recommended": "~4.1.0",
"eslint-plugin-flowtype": "~8.0.3",
"eslint-plugin-fp": "~2.3.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-unicorn": "^45.0.2",
"flow-bin": "^0.196.0",
"nodemon": "~2.0.20"
},
"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"
}
}