-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "chatbot",
"version": "1.0.0",
"description": "",
"main": "app.js",
"nodemonConfig": {
"ignore": [
"*.test.js",
"tests/**/*"
],
"ext": "js, hbs, css, json",
"watch": [
"app.js",
"src/",
"locales/",
"static/",
"views/"
]
},
"scripts": {
"test": "jest --watchAll --maxWorkers=50%",
"test:ci": "jest --runInBand",
"start": "cross-env node app.js",
"start:dev": "cross-env nodemon -L --exec node app.js",
"scheduler": "node scheduler.js",
"ngrok": "ngrok http 3000"
},
"engines": {
"node": "14.x",
"npm": "6.x"
},
"repository": {
"type": "git",
"url": "https://github.com/YavorGrancharov/viber_bot"
},
"keywords": [
"bot",
"viber",
"viber chatbot",
"viber bot"
],
"author": "Yavor Grancharov",
"license": "MIT",
"dependencies": {
"bootstrap": "^5.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.3",
"i18n": "^0.13.3",
"mongodb": "^4.0.1",
"mongoose": "^5.13.5",
"node-absolute-path": "^1.0.6",
"node-cron": "^3.0.0",
"node-mocks-http": "^1.10.1",
"one-liner-joke": "^1.2.2",
"unirest": "^0.6.0",
"viber-bot": "^1.0.16"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"jest": "^27.1.0",
"nodemon": "^2.0.12",
"supertest": "^6.1.6"
},
"type": "commonjs"
}