-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 974 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
36
37
38
{
"name": "freifunk-iot_data-sink-node",
"version": "0.0.1",
"main": "lib/index.js",
"author": "Fabian Stamm <[email protected]>",
"contributors": [
{
"name": "Fabian Stamm",
"email": "[email protected]"
}
],
"license": "MIT",
"scripts": {
"start": "node lib/index.js",
"build": "tsc",
"watch-ts": "tsc --watch",
"watch-js": "nodemon -e ini,js lib/index.js",
"watch": "concurrently \"npm:watch-*\"",
"test": "echo \"no test specified\""
},
"devDependencies": {
"@types/ini": "^1.3.30",
"@types/node": "^10.12.12",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"concurrently": "^4.1.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"typescript": "^3.2.2"
},
"dependencies": {
"@hibas123/nodelogging": "^1.3.21",
"influx": "^5.0.7",
"ini": "^1.3.5",
"moment": "^2.22.2",
"mqtt": "^2.18.8"
}
}