-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
112 lines (112 loc) · 2.92 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "football-chat-bot-2",
"version": "0.2.6",
"description": "Footbal chat bot build with NestJS framework",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"test:watch": "npm test -- --watch --extension *.ts",
"test:cov": "nyc npm run test",
"env:generate": "node gen-env.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS -g './git/commitlint.js'"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./git/commitizen.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tormozz48/football-chat-bot-2.git"
},
"keywords": [
"football",
"chat",
"bot",
"telegram",
"vk",
"bot",
"vk-bot",
"vk-api",
"nestjs",
"nodejs",
"typescript",
"typeorm",
"sqlite3",
"postgresql"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/tormozz48/football-chat-bot-2/issues"
},
"homepage": "https://github.com/tormozz48/football-chat-bot-2#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"@nestjs/cli": "^8.2.8",
"@nestjs/common": "^7.6.18",
"@nestjs/core": "^7.6.18",
"@nestjs/platform-express": "^7.6.18",
"@nestjs/typeorm": "^7.1.4",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/handlebars": "^4.1.0",
"@types/moment": "^2.13.0",
"@types/node": "^14.18.37",
"dotenv": "^8.6.0",
"envalid": "^6.0.2",
"events-extra": "^1.0.4",
"handlebars": "^4.7.7",
"handlebars-helpers": "^0.10.0",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"node-vk-bot-api": "github:tormozz48/node-vk-bot-api",
"nyc": "^15.1.0",
"pg": "^8.10.0",
"read-dir-deep": "^7.0.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.7",
"socks5-https-client": "^1.2.1",
"sql.js": "^1.8.0",
"sqlite3": "^5.1.6",
"telegraf": "^3.38.0",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.14.2",
"typeorm": "^0.3.12",
"typescript": "^4.9.5"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@nestjs/testing": "^7.4.4",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"commitizen": "^4.2.1",
"cz-customizable": "^6.3.0",
"envdot": "0.0.3",
"husky": "^4.3.0",
"mocha": "^8.1.3",
"prettier": "^2.1.2",
"ts-loader": "^8.0.4",
"tslint": "^6.1.3",
"uuid": "^8.3.0"
}
}