-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (43 loc) · 1.17 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
38
39
40
41
42
43
44
{
"name": "Alexa-universal-template",
"version": "0.0.1",
"description": "Quickstart template for a NodeJS Application, you can easily deploy it in heroku or any HTTP server",
"engines": {
"node": "6.9.4"
},
"main": "dist/app/index.js",
"scripts": {
"start": "node dist/app/index.js",
"heroku-deploy": "git checkout atomic-development && git add ./ && git commit -m \"development increment\" && git push heroku atomic-development:master --force && heroku logs --tail",
"serve": "node dist/app/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/falent/Alexa_universal_skill_template_VM"
},
"keywords": [
"nodejs"
],
"author": "Tomasz Krajewski",
"contributors": [
{
"name": "Tomasz Krajewski",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"alexa-verifier": "^0.3.6"
},
"dependencies": {
"alexa-sdk": "^1.0.10",
"aws-lambda-mock-context": "^3.1.1",
"body-parser": "^1.17.2",
"botkit": "^0.5.4",
"express": "^4.15.3",
"request": "^2.81.0",
"mongoose": "^4.10.5",
"mongodb": "^2.2.26",
"ngrok":"2.2.24"
}
}