-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 660 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 660 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
{
"name": "stateless",
"version": "1.0.0",
"description": "StateLess Telegram bot manager",
"main": "app.js",
"author": "Mukhammadyusuf Abdurkahimov",
"license": "MIT",
"scripts": {
"start": "node ./dist/bot.js",
"build": "yarn clean & tsc",
"watch": "tsc -w",
"develop": "nodemon ./dist/bot.js",
"clean": "rm -rf ./dist",
"debug": "export DEBUG='grammy*' && yarn develop",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/node": "^18.0.0",
"dotenv": "^16.0.1",
"nodemon": "^2.0.18",
"typescript": "^4.7.4"
},
"dependencies": {
"grammy": "^1.9.0"
}
}