-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "nvsbot-beta",
"version": "0.0.20",
"description": "Not Very Smart Bot",
"main": "dist/index.js",
"dependencies": {
"dotenv": "^16.3.1",
"googleapis": "^130.0.0",
"moment": "^2.30.1",
"node-telegram-bot-api": "^0.64.0",
"openai": "^4.24.2",
"@aws-sdk/client-dynamodb": "^3.490.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@types/aws-lambda": "^8.10.131",
"@types/express": "^4.17.21",
"@types/node": "^20.10.7",
"@types/node-telegram-bot-api": "^0.64.2",
"aws-lambda": "^1.0.7",
"babel-loader": "^9.1.3",
"body-parser": "^1.20.2",
"concurrently": "^8.2.2",
"express": "^4.18.2",
"nodemon": "^3.0.2",
"standard-version": "^9.5.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"start": "yarn dev",
"build": "tsc",
"watch": "tsc --watch",
"dev": "NODE_ENV=development concurrently \"yarn watch\" \"nodemon --watch dist dist/dev.js\"",
"release": "yarn build && standard-version"
},
"keywords": [
"bot",
"telegram",
"openai"
],
"author": "Serhii Melnyk <serhi.melnik@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/TJNYL/NVSBot"
},
"engines": {
"node": ">=18.0.0"
},
"type": "commonjs",
"files": [
"dist"
]
}