-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 1.14 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
{
"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": "npm run serve",
"start:local": "npm run build && concurrently --kill-others \"npm start\" \"npm run ngrok\"",
"serve": "node ./build/app.js",
"ngrok": "node -r dotenv/config tools/ngrok.js",
"postinstall": "npm run build"
},
"dependencies": {
"@slack/bolt": "^3.6.0",
"dotenv": "^8.2.0",
"mysql2": "2.1.0",
"mysql2-promise": "0.1.4"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"typescript": "^3.9.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slackapi/slack-reporting-tool.git"
},
"author": "",
"bugs": {
"url": "https://github.com/slackapi/slack-reporting-tool/issues"
},
"homepage": "https://github.com/slackapi/slack-reporting-tool#readme",
"optionalDependencies": {
"concurrently": "^4.1.1",
"ngrok": "^3.2.3"
}
}