-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
63 lines (63 loc) · 1.66 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
{
"name": "nestjs-slack",
"version": "2.0.0",
"description": "",
"repository": "github:bjerkio/nestjs-slack",
"license": "Apache-2.0",
"author": "Bjerk AS",
"main": "dist/plugin.js",
"files": [
"dist/"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint 'src/**/*.ts' --fix",
"prepare": "husky install .github/husky",
"test": "jest --coverage src"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"prettier": "@simenandre/prettier",
"dependencies": {
"@bjerk/eslint-config": "^5.0.0",
"@google-cloud/logging": "^10.0.1",
"@slack/web-api": "^6",
"axios": "^1.0.0",
"node-fetch": "^2.6.7",
"slack-block-builder": "^2",
"ts-invariant": "^0.10.3"
},
"devDependencies": {
"@nestjs/common": "^9.0.3",
"@nestjs/core": "^9.0.3",
"@nestjs/platform-express": "^^9.0.0",
"@nestjs/testing": "^9.0.3",
"@simenandre/prettier": "^5.0.0",
"@slack-wrench/jest-mock-web-client": "^1.4.0",
"@types/jest": "^28.1.5",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^47.0.0",
"husky": "^8",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"nock": "^13.2.8",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@nestjs/common": ">=9 <=10",
"@nestjs/core": ">=9 <=10"
}
}