-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
35 lines (35 loc) · 817 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
34
35
{
"name": "messenger-bot-nlp",
"version": "1.0.0",
"description": "Messenger Bot sample with built-in NLP",
"main": "app.js",
"scripts": {
"start": "node app.js",
"debug": "SET DEBUG=true && nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eisenjulian/messenger-bot-nlp.git"
},
"keywords": [
"nlp",
"messenger",
"bot"
],
"author": "Julian Eisenschlos",
"license": "MIT",
"bugs": {
"url": "https://github.com/eisenjulian/messenger-bot-nlp/issues"
},
"homepage": "https://github.com/eisenjulian/messenger-bot-nlp#readme",
"dependencies": {
"config": "^1.27.0",
"express": "^4.16.2",
"messenger-bot": "^2.4.0",
"pg": "7.4.0"
},
"devDependencies": {
"ngrok": "^2.2.23",
"nodemon": "^1.12.1"
}
}