-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "slack-mention-reminder",
"version": "0.0.1",
"description": "A Slack app that sets up reminders when being mentioned with text",
"main": "lib/main.js",
"scripts": {
"local": "npm run build:live",
"start": "npm run build && node lib/main.js",
"build": "tsc -p .",
"format": "prettier -w src/",
"build:live": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/main.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/seratch/slack-mention-reminder"
},
"keywords": [
"Slack"
],
"author": "Kazuhiro Sera",
"license": "MIT",
"bugs": {
"url": "https://github.com/seratch/slack-mention-reminder/issues"
},
"homepage": "https://github.com/seratch/slack-mention-reminder#readme",
"dependencies": {
"@slack/socket-mode": "^1.3.4",
"slack-edge": "^0.12.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@slack/cli-hooks": "^1.1.0",
"@types/node": "^20.12.7",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
}
}