-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 939 Bytes
/
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
{
"name": "bot-template",
"version": "1.0.0",
"author": "Ivan Tolstov",
"description": "Make your TG bot",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"build": "babel index.js -d dist ",
"prepare": "cp package.prod.json package.json",
"heroku-postbuild": "npm run build && npm run prepare",
"dev": "nodemon index.js"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^4.0.0",
"express": "^4.18.2",
"node-telegram-bot-api": "^0.30.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.21"
}
}