forked from virtualzone/landroid-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.27 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
{
"name": "landroid-bridge",
"version": "0.1.0",
"description": "Publishes readings from the Worx Landroid S Lawn Mower via HTTP (REST, JSON) and MQTT.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=dev mocha --reporter spec --require ts-node/register 'test/**/*.test.ts'",
"grunt": "grunt",
"start": "node dist/server.js",
"dev": "npm run clean && npm run grunt && NODE_ENV=dev node dist/server.js",
"clean": "rm -rf dist/",
"build-prod": "npm run clean && npm run grunt && npm prune --production"
},
"author": "weweave UG <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.2",
"@types/sqlite3": "^3.1.5",
"chai": "^4.2.0",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-ts": "^6.0.0-beta.22",
"grunt-tslint": "^5.0.2",
"mocha": "^6.1.4",
"ts-node": "^8.1.1",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"dependencies": {
"body-parser": "^1.19.0",
"cache": "^2.1.0",
"cron": "^1.7.1",
"express": "^4.17.0",
"iobroker.landroid-s": "^2.5.5",
"log4js": "^4.3.0",
"moment": "^2.24.0",
"mqtt": "^2.18.8",
"sqlite3": "^4.0.8"
}
}