forked from devops-consultants/nestjs-slack-listener
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.71 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.71 KB
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": "nestjs-slack-listener",
"version": "1.1.2",
"description": "NestJS Slack listeners and handlers",
"author": "Chung Hwan Han <cndghks15@gmail.com>",
"license": "MIT",
"readmeFilename": "README.md",
"main": "dist/index.js",
"files": [
"dist/**/*",
"*.md"
],
"scripts": {
"start:dev": "tsc -w",
"build": "tsc",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test,__tests__}/**/*.ts\" --fix",
"lint:ci": "eslint \"{src,apps,libs,test,__tests__}/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"precommit": [
"lint:ci",
"test:cov"
],
"keywords": [
"nestjs",
"slack",
"slack-bot",
"slack-listener",
"slack-handler",
"slack-event",
"slack-event-handler",
"slack-event-listener",
"slack-sdk",
"web-api"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/hanchchch/nestjs-slack-listener"
},
"bugs": "https://github.com/hanchchch/nestjs-slack-listener",
"peerDependencies": {
"@nestjs/common": "^11.1.1"
},
"dependencies": {
"@golevelup/nestjs-modules": "^0.8.0",
"@slack/web-api": "^7.9.2",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.9",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.27.0",
"@nestjs/common": "^11.1.1",
"@nestjs/core": "^11.1.1",
"@nestjs/platform-express": "^11.1.1",
"@nestjs/testing": "^11.1.1",
"@types/express": "^5.0.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.21",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.0",
"globals": "^16.1.0",
"jest": "^29.7.0",
"pre-commit": "^1.0.10",
"prettier": "^3.5.3",
"reflect-metadata": "^0.2.2",
"ts-jest": "^29.3.4",
"ts-node": "10.7.0",
"tsc-watch": "^6.3.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"roots": [
"src"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleNameMapper": {
"gaxios": "gaxios",
"src/(.*)": "<rootDir>/src/$1"
}
}
}