-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1 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": "bl-bridge-humidity-coap",
"version": "1.0.0",
"description": "Humidity sensor emitter",
"main": "index.js",
"scripts": {
"prepare": "tsc",
"build": "tsc",
"start": "tsc && node dist/app.js",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jesperancinha/bridge-logistics.git"
},
"author": "João Esperancinha",
"license": "ISC",
"bugs": {
"url": "https://github.com/jesperancinha/bridge-logistics/issues"
},
"homepage": "https://github.com/jesperancinha/bridge-logistics#readme",
"dependencies": {
"@types/node": "18.7.23",
"coap": "1.0.11",
"express": "4.18.2",
"kafka-node": "5.0.0",
"node-cron": "3.0.2",
"ts-loader": "9.4.1",
"typescript": "4.8.4"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@testing-library/jest-dom": "^5.16.5",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2"
}
}