-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.07 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
{
"name": "musician_chatbot",
"version": "1.3.0",
"description": "Telegram bot for handling daily/weekly music charts",
"main": "index.js",
"scripts": {
"start": "node src/main.js",
"stop": "./node_modules/.bin/forever stopall",
"db": "mongod --dbpath=./data",
"set_env": "export $(cat .env | xargs)",
"dev": "export $(cat .env | xargs) && ./node_modules/.bin/forever stopall && node src/main.js",
"debug": "export $(cat .env | xargs) & ./node_modules/.bin/forever stopall && node --inspect src/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joycem137/musician_chatbot.git"
},
"author": "Joyce Mayorga",
"license": "ISC",
"bugs": {
"url": "https://github.com/joycem137/musician_chatbot/issues"
},
"homepage": "https://github.com/joycem137/musician_chatbot#readme",
"dependencies": {
"forever": "^0.15.3",
"jsPolyfills": "git://github.com/joycem137/jsPolyfills.git",
"mongodb": "^3.0.0-rc0",
"prompt-sync": "^4.1.5",
"readline-sync": "^1.4.7",
"telegram-node-bot": "^4.0.5"
}
}