forked from MAmamiyaAhmad/TGStoreBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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
{
"name": "tgstorebot",
"version": "1.0.0",
"description": "Telegram bot for product store",
"main": "dist/bot.js",
"scripts": {
"start": "node dist/bot.js",
"dev": "ts-node src/bot.ts",
"build": "tsc && npm run copy-languages",
"copy-languages": "ncp src/languages dist/languages",
"test": "echo \"No test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/MAmamiyaAhmad/TGStoreBot.git"
},
"keywords": [
"telegram",
"bot",
"typescript"
],
"author": "M Amamiya Ahmad - https://github.com/MAmamiyaAhmad/",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^11.8.1",
"dotenv": "^10.0.0",
"grammy": "^1.34.1",
"node-fetch": "^3.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@grammyjs/types": "^3.18.0",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^16.18.126",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.19.0",
"ncp": "^2.0.0",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}