-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "omg-acurite-filter",
"version": "1.0.0",
"author": "Paul Vincent",
"description": "Listens for data from OpenMQTTGateway and relays it back to MQTT after filtering out suspect data.",
"scripts": {
"build": "tsc",
"start": "node -r ts-node/register src/app.ts",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"dependencies": {
"app-root-path": "^3.1.0",
"compression": "^1.7.4",
"dateformat": "^4.6.3",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"format-duration": "^3.0.2",
"http-status-codes": "^2.3.0",
"lodash": "^4.17.21",
"mqtt": "^5.0.5",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.6",
"toad-scheduler": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.8",
"@types/compression": "^1.7.5",
"@types/dateformat": "^5.0.2",
"@types/debug": "^4.1.9",
"@types/express": "^4.17.21",
"@types/lodash": "^4.14.200",
"@types/mocha": "^10.0.2",
"@types/node": "^20.7.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"chai": "^4.3.10",
"eslint": "^8.50.0",
"eslint-plugin-jsdoc": "^46.8.2",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"ts-node-register": "^1.0.0",
"typescript": "^5.2.2"
}
}