-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 787 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 787 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
{
"name": "books-and-bot",
"version": "1.0.0",
"description": "Telegram bot",
"main": "dist/index.js",
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"build": "babel src --out-dir dist",
"serve": "node dist/index.js"
},
"author": "dmtrbrl <dmytro.barylo@gmail.com> (https://github.com/dmtrbrl)",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.26.0",
"dotenv": "^8.2.0",
"node-fetch": "^2.6.0",
"telegraf": "^3.34.1",
"xml2js-es6-promise": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/runtime": "^7.7.4",
"nodemon": "^1.19.4"
}
}