-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1014 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1014 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
34
35
36
37
38
39
40
41
42
43
{
"name": "trackgo-ts",
"version": "2.0.0",
"description": "Bot TrackGo - TypeScript Version",
"main": "./build/index.js",
"type": "module",
"scripts": {
"start": "node .",
"start:dev": "nodemon --inspect ./src/index.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reedbluue/trackgo.git"
},
"keywords": [
"track",
"tracks"
],
"author": "Igor Oliveira",
"license": "MIT",
"bugs": {
"url": "https://github.com/reedbluue/trackgo/issues"
},
"homepage": "https://github.com/reedbluue/trackgo#readme",
"devDependencies": {
"@types/jsonwebtoken": "^8.5.9",
"@types/luxon": "^3.1.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@keyvhq/core": "^1.6.14",
"chalk": "^5.1.2",
"correios-brasil": "^3.0.3",
"dotenv": "^16.0.3",
"jsonwebtoken": "^9.0.0",
"luxon": "^3.1.1",
"mongoose": "^6.7.5",
"telegraf": "^4.11.2"
}
}