-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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": "rastreaqui-bot",
"displayName": "RastreAQUI Bot",
"version": "3.0.1",
"description": "Telegram bot for track Correios objects",
"author": "Giovani de Oliveira <[email protected]>",
"license": "MIT",
"main": "server.js",
"scripts": {
"start": "node server.js",
"migrate": "npx sequelize-cli db:migrate",
"seed": "npx sequelize-cli db:seed:all"
},
"repository": {
"type": "git",
"url": "https://github.com/xxgicoxx/rastreaqui-bot.git"
},
"bugs": {
"url": "https://github.com/xxgicoxx/rastreaqui-bot/issues"
},
"homepage": "https://github.com/xxgicoxx/rastreaqui-bot#readme",
"keywords": [
"correiosjs",
"correios",
"objects",
"track"
],
"dependencies": {
"correios.js": "^5.0.0",
"dotenv": "^16.0.0",
"node-cron": "^3.0.0",
"node-telegram-bot-api": "^0.56.0",
"pg": "^8.7.3",
"sequelize": "^6.18.0"
},
"devDependencies": {
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"sequelize-cli": "^6.4.1"
}
}