-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
50
51
52
53
54
55
56
57
{
"name": "musicorum-telegram-bot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"author": "Musicorum Team",
"contributors": [
"Matheus Dias <methidezeeni@gmail.com>",
"Pedro Piva"
],
"license": "GPL-3.0",
"scripts": {
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "babel-node -r dotenv/config src/index.js",
"clean": "rm -rf ./dist && mkdir dist",
"build": "npm run clean && babel src -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/musicorum-app/telegram.git"
},
"dependencies": {
"@types/telebot": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"axios": "^0.21.1",
"node-telegram-bot-api": "^0.54.0",
"pg": "^8.7.1",
"sequelize": "^6.6.5",
"signale": "^1.4.0",
"telegraf": "^4.4.1",
"yn": "^3.1.1"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/plugin-transform-modules-commonjs": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/node": "^16.7.8",
"dotenv": "^10.0.0",
"eslint": "^7.29.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"typescript": "^4.4.2"
},
"keywords": [],
"bugs": {
"url": "https://github.com/musicorum-app/telegram/issues"
},
"homepage": "https://github.com/musicorum-app/telegram#readme"
}