-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.25 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
{
"name": "mqtt-osem-integration",
"version": "1.0.0",
"description": "openSenseMap MQTT client",
"main": "src/index.js",
"repository": "https://github.com/sensebox/mqtt-osem-integration.git",
"author": "Gerald Pape <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node src/index.js",
"lint": "eslint --ignore-pattern node_modules --fix \"{src,test,.scripts}/**/*.js\"",
"lint:ci": "eslint --ignore-pattern node_modules \"{test,packages}/**/*.js\"",
"pretest": "docker compose -f test/docker-compose.yml up -d",
"test": "mocha --exit test/index.js",
"posttest": "docker compose -f test/docker-compose.yml down -v",
"only-test": "mocha --inspect-brk test/index.js"
},
"devDependencies": {
"@sensebox/eslint-config-sensebox": "^1.1.1",
"chai": "^4.3.8",
"eslint": "^8.49.0",
"mocha": "^10.0.0"
},
"dependencies": {
"@grpc/grpc-js": "^1.9.3",
"@grpc/proto-loader": "^0.7.9",
"@sensebox/opensensemap-api-models": "3.1.0",
"@sensebox/osem-protos": "^1.1.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mqtt": "^5.0.5",
"pino": "^8.15.1",
"restify-errors": "^8.0.2",
"socket.io": "^4.7.2"
},
"publishConfig": {
"access": "public"
}
}