-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "telegram-bot-base",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.1286.0",
"axios": "^1.6.0",
"dotenv": "^8.2.0",
"glob": "^7.1.6",
"node-telegram-bot-api": "^0.57.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.109",
"@types/dotenv": "^8.2.0",
"@types/glob": "^7.1.3",
"@types/node": "^14.14.3",
"@types/node-telegram-bot-api": "^0.56.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"esbuild": "^0.16.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.3.2",
"ts-node": "^10.2.0",
"ts-node-dev": "^1.1.8"
},
"scripts": {
"clean": "rm -Rf dist",
"start": "node dist/main.js",
"develop": "ts-node-dev --respawn --watch src,types src/main.ts",
"set-webhook": "ts-node scripts/set-webhook.ts",
"build": "esbuild `find src \\( -name '*.ts' \\)` --platform=node --outdir=dist --target=node16 --bundle --sourcemap"
}
}