-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 874 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
{
"name": "pointless-bot",
"version": "1.0.0",
"description": "Will be consumed by the Facebook Messenger webhook",
"main": "bot.js",
"dependencies": {
"aws-sdk": "^2.9.0",
"claudia-bot-builder": "^2.14.0",
"dialogue-builder": "^0.3.0",
"serverless-plugin-stage-variables": "^1.6.6"
},
"devDependencies": {
"@types/node": "^7.0.4",
"typescript": "^2.1.5"
},
"scripts": {
"deploy": "tsc && serverless deploy",
"stage": "tsc && serverless deploy function -f pointless-bot -l"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nbransby/dialogue-builder-example.git"
},
"author": "Nicholas Bransby-Williams",
"license": "MIT",
"bugs": {
"url": "https://github.com/nbransby/dialogue-builder-example/issues"
},
"homepage": "https://github.com/nbransby/dialogue-builder-example#readme"
}