-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 792 Bytes
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
{
"name": "slack-tos-example",
"private": true,
"version": "1.0.0",
"description": "Sample Slack app that uses the Events API and interactive messages to send new users a Terms of Service or welcome message",
"engines": {
"node": ">= 6.9.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/server.js"
},
"author": "Sachin Ranchod <sranchod@slack-corp.com>",
"dependencies": {
"@slack/client": "^4.3.1",
"@slack/events-api": "^1.0.1",
"axios": "^0.16.0",
"body-parser": "^1.18.3",
"dotenv": "^4.0.0",
"express": "^4.16.3",
"mailgun-js": "^0.20.0",
"morgan": "^1.9.0",
"node-json-db": "^0.7.3",
"querystring": "^0.2.0"
},
"devDependencies": {
"nodemon": "^1.18.3"
}
}