-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
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
{
"name": "viber-development-bot",
"version": "1.0.0",
"description": "Sample Viber bot",
"main": "app.js",
"scripts": {
"heroku-postbuild": "npm run install-server",
"install-server": "npm install",
"debug": "nodemon app.js --exec \"npm run lint && node\"",
"debug-nolint": "nodemon app.js",
"quick-start": "",
"lint": "eslint **/*.js"
},
"author": "Alejo Kim Uy",
"license": "ISC",
"dependencies": {
"ejs": "^3.1.7",
"express": "^4.17.1",
"viber-bot": "^1.0.16"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devaku/nodejs-viber-bot"
},
"bugs": {
"url": "https://github.com/devaku/nodejs-viber-bot/issues"
},
"homepage": "https://github.com/devaku/nodejs-viber-bot#readme",
"keywords": [
"nodejs",
"viber",
"bot"
]
}