-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "consumer-humidity-data",
"version": "1.0.0",
"description": "This microservice read data from rabbitmq and insert humidity data extract from iot sensors to influxdb",
"main": "index.js",
"scripts": {
"start": "tsc && node ./dist/app.js",
"debug": "export DEBUG=* && npm run start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JuanmaBM/consumer-humidity-data.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/JuanmaBM/consumer-humidity-data/issues"
},
"homepage": "https://github.com/JuanmaBM/consumer-humidity-data#readme",
"dependencies": {
"amqp-ts": "^1.8.0",
"amqplib": "^0.6.0",
"cors": "^2.8.5",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-winston": "^4.0.5",
"influx": "^5.7.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/amqplib": "^0.5.17",
"@types/cors": "^2.8.9",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.11",
"eslint": "^7.19.0",
"source-map-support": "^0.5.19",
"tslint": "^6.1.3",
"typescript": "^4.1.5"
}
}