-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.81 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
{
"name": "bot",
"version": "1.4.0",
"homepage": "https://connect-example.delab.team",
"main": "./dist/index.js",
"description": "",
"repository": "https://github.com/delab-team/debot",
"author": "DeLab Team",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build:digitalocean": "yarn install --production=false && yarn run build && rm -rf node_modules && yarn install --production --frozen-lockfile",
"start": "ts-node src/bot.ts"
},
"dependencies": {
"@eversdk/core": "^1.41.1",
"@eversdk/lib-node": "^1.41.1",
"cors": "^2.8.5",
"dotenv": "16.4.5",
"express": "^4.18.2",
"node-telegram-bot-api": "^0.61.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/http-errors": "2.0.4",
"@types/node": "^18.7.6",
"@types/node-telegram-bot-api": "0.64.6",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"assert": "^2.0.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"process": "^0.11.10",
"readable-stream": "^4.1.0",
"util": "^0.12.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}