forked from slackapi/slack-reporting-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.13 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
{
"name": "slack-reporting-tool",
"version": "0.1.0",
"description": "An open source Slack app to let anyone in a workspace report a message to an administrator because the message is offensive, harassing, or violates the Code of Conduct.",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "yarn run serve",
"start:local": "yarn run build && concurrently --kill-others \"yarn start\" \"yarn run ngrok\"",
"serve": "node ./build/app.js",
"ngrok": "node -r dotenv/config tools/ngrok.js"
},
"dependencies": {
"@slack/bolt": "^3.18.0",
"dotenv": "^16.4.5",
"mysql2": "3.10.0",
"mysql2-promise": "0.1.4"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iosdevelopershq/slack-reporting-tool.git"
},
"author": "",
"bugs": {
"url": "https://github.com/iosdevelopershq/slack-reporting-tool/issues"
},
"homepage": "https://github.com/iosdevelopershq/slack-reporting-tool#readme",
"optionalDependencies": {
"concurrently": "^8.2.2",
"ngrok": "^4.3.3"
}
}