forked from koriwi/sensors2mqtt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 910 Bytes
/
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
{
"name": "sensors2mqtt",
"version": "0.0.3",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "NODE_OPTIONS='--inspect=0.0.0.0:9229' tsx src/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"child_process": "^1.0.2",
"mqtt": "^5.5.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"globals": "^15.0.0",
"nodemon": "^3.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0"
},
"type": "module"
}