forked from dcl-regenesislabs/slack-claw-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.76 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.76 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
{
"name": "slack-issue-bot",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node --trace-warnings --abort-on-uncaught-exception --unhandled-rejections=strict dist/index.js",
"dev": "nodemon --watch 'src/**' --ext 'ts,json' --ignore 'src/**/*.spec.ts' --exec 'tsx src/index.ts'",
"cli": "tsx src/cli.ts",
"test": "node --experimental-vm-modules node_modules/.bin/jest --forceExit --detectOpenHandles --coverage --verbose",
"lint:check": "eslint '**/*.{js,ts}' --ignore-path .gitignore",
"lint:fix": "eslint '**/*.{js,ts}' --ignore-path .gitignore --fix"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.0.0",
"@dcl/jarvis": "^1.4.0",
"@dcl/redis-component": "^3.0.1",
"@mariozechner/pi-coding-agent": "^0.55.0",
"@slack/bolt": "^4.1.0",
"@well-known-components/env-config-provider": "^1.2.0",
"@well-known-components/fetch-component": "^3.0.0",
"@well-known-components/http-server": "^2.1.0",
"@well-known-components/interfaces": "^1.5.1",
"@well-known-components/logger": "^3.1.3",
"@well-known-components/metrics": "^2.1.0",
"croner": "^10.0.1"
},
"devDependencies": {
"@types/ioredis": "^5.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"@well-known-components/test-helpers": "^1.5.8",
"dotenv": "^16.4.0",
"eslint": "^8",
"jest": "^29.0.0",
"nodemon": "^3.0.0",
"ts-jest": "^29.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
}
}