-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
43
44
45
46
47
48
49
{
"name": "@strabot/telegram",
"private": true,
"version": "1.0.13",
"description": "A Strabot Telegram bot",
"main": "src/index.js",
"type": "module",
"scripts": {
"develop": "nodemon --exec 'npm start | pino-pretty'",
"docs": "jsdoc src",
"lint": "standard",
"lint:fix": "npm run lint -- --fix",
"start": "node -r dotenv/config .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strabot/telegram.git"
},
"author": {
"name": "Gabriel Rufino",
"email": "contato@gabrielrufino.com"
},
"funding": "https://github.com/sponsors/gabrielrufino",
"license": "MIT",
"bugs": {
"url": "https://github.com/strabot/telegram/issues"
},
"homepage": "https://github.com/strabot/telegram#readme",
"dependencies": {
"cron": "^2.4.4",
"dayjs": "^1.11.12",
"dotenv": "^16.4.5",
"got": "^12.6.1",
"natural": "^5.2.4",
"pino": "^9.3.2",
"telegraf": "^4.16.3"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@strabot/types": "^1.1.4",
"husky": "^8.0.3",
"jest": "^28.1.3",
"jsdoc": "^4.0.3",
"nodemon": "^2.0.22",
"pino-pretty": "^11.2.2",
"standard": "^17.1.0"
}
}