-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 737 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 737 Bytes
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
{
"name": "tb-cli",
"version": "0.2.0",
"description": "ThingsBoard CLI",
"main": "build/index.js",
"scripts": {
"start:build": "tsc -w",
"start:run": "nodemon build/index.js",
"start": "concurrently npm:start:*",
"test": "npm i -g && tb"
},
"keywords": [],
"author": "M.Hassan Mojab",
"license": "MIT",
"bin": {
"tb": "./build/index.js"
},
"devDependencies": {
"@types/node": "^17.0.21",
"concurrently": "^7.0.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"axios": "^0.26.1",
"commander": "^9.0.0",
"isomorphic-git": "^1.13.1",
"jwt-decode": "^3.1.2",
"keytar": "^7.9.0",
"moment": "^2.29.1"
}
}