forked from hectorbenitez/nodejs-slackbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 794 Bytes
/
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
{
"name": "nodejs-slackbot",
"version": "1.0.0",
"description": "## Workshop",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "eval $(cat .env) nodemon --inspect app.js",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hectorbenitez/nodejs-slackbot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hectorbenitez/nodejs-slackbot/issues"
},
"homepage": "https://github.com/hectorbenitez/nodejs-slackbot#readme",
"dependencies": {
"@slack/bolt": "^1.6.0",
"cors": "^2.8.5",
"moment": "^2.24.0",
"mongoose": "^5.8.11"
},
"devDependencies": {
"nodemon": "^1.19.2"
},
"engines": {
"node": "10.x"
}
}