-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.54 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
{
"name": "telegramwarden",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"mysql": "^2.15.0",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.12",
"typeorm": "^0.2.15",
"dotenv": "^8.2.0",
"prettier": "^2.2.1",
"telegraf": "^3.38.0",
"translatte": "^3.0.0",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/node": "^14.14.14",
"rimraf": "^3.0.2",
"ts-node": "3.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0"
},
"scripts": {
"clean": "rimraf ./dist",
"lint": "tslint-config-prettier-check ./tslint.json",
"tsstart": "ts-node src/bot",
"start": "npm run lint && npm run clean && tsc && node dist/bot.js",
"build": "tsc",
"add-migration": "npm run clean && tsc && ts-node ./node_modules/typeorm/cli.js migration:generate -n",
"update-database": "ts-node ./node_modules/typeorm/cli.js migration:run",
"update-database-dev": "npm run clean && tsc && ts-node ./node_modules/typeorm/cli.js migration:run",
"revert-database-dev": "npm run clean && tsc && ts-node ./node_modules/typeorm/cli.js migration:revert"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aqulasoft/TelegramWarden.git"
},
"keywords": [
"telegram",
"bot",
"typescrypt"
],
"author": "aqulasoft",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/aqulasoft/TelegramWarden/issues"
},
"homepage": "https://github.com/aqulasoft/TelegramWarden#readme"
}