-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "nestjs-slack",
"version": "1.4.1",
"description": "",
"main": "dist/plugin.js",
"repository": "github:bjerkio/nestjs-slack",
"author": "Bjerk AS",
"license": "Apache-2.0",
"files": [
"dist/"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint 'src/**/*.ts' --fix",
"test": "jest --coverage src",
"prepare": "husky install .github/husky"
},
"devDependencies": {
"@cobraz/prettier-config": "^1.0.1",
"@indivorg/eslint-config": "^2.0.0",
"@nestjs/common": "^9.0.3",
"@nestjs/core": "^9.0.3",
"@nestjs/platform-express": "^^9.0.0",
"@nestjs/testing": "^9.0.3",
"@slack-wrench/jest-mock-web-client": "^1.4.0",
"@slack/web-api": "^6.3.0",
"@types/jest": "^28.1.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"eslint": "8.19.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^43.0.1",
"husky": "8",
"jest": "28.1.3",
"lint-staged": "13.0.3",
"nock": "^13.2.8",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"slack-block-builder": "^2.1.0",
"ts-jest": "^28.0.5",
"typescript": "4.7.4"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"dependencies": {
"@google-cloud/logging": "^10.0.1",
"@slack/web-api": "^6",
"axios": "^0.27.2",
"slack-block-builder": "^2"
},
"peerDependencies": {
"@nestjs/common": ">=9 <=10",
"@nestjs/core": ">=9 <=10"
},
"prettier": "@cobraz/prettier-config"
}