-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.72 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
{
"name": "DeerDailyInn",
"version": "2.0.0",
"description": "Utility telegram bot for Chat Wars",
"main": "dist/mod.js",
"repository": "[email protected]:KnightNiwrem/DeerDailyInn.git",
"author": "KnightNiwrem",
"license": "MIT",
"type": "module",
"scripts": {
"build": "rm -rf dist && ttsc",
"docker:start": "yarn raw:waitdb && yarn raw:migrate && yarn raw:start",
"lint": "eslint . --ext .ts",
"raw:migrate": "knex --knexfile dist/knexfile.js migrate:latest",
"raw:start": "node dist/mod.js",
"raw:waitdb": "wait-on tcp:$POSTGRES_HOST:$POSTGRES_PORT",
"start": "build && yarn docker:start"
},
"dependencies": {
"@grammyjs/transformer-throttler": "^0.1.9",
"amqplib": "^0.8.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"grammy": "^1.1.5",
"humanize-duration": "^3.26.0",
"kafkajs": "^1.15.0",
"knex": "^0.21.0",
"lodash-es": "^4.17.21",
"luxon": "^1.27.0",
"nanoid": "^3.1.23",
"nanoid-dictionary": "^5.0.0-beta.1",
"ngrok": "^4.0.1",
"objection": "^2.2.15",
"pg": "^8.6.0"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/amqplib": "^0.5.17",
"@types/express": "^4.17.12",
"@types/humanize-duration": "^3.25.0",
"@types/lodash-es": "^4.17.4",
"@types/luxon": "^1.26.5",
"@types/nanoid-dictionary": "^4.2.0",
"@types/node": "^15.6.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.3",
"ts-node": "^10.0.0",
"ttypescript": "^1.5.12",
"typescript": "^4.2.4",
"typescript-transform-paths": "^2.2.4",
"wait-on": "^5.3.0"
}
}