-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "ihavenever-bot",
"type": "module",
"version": "1.0.0",
"description": "Funny Telegram bot for getting questions for game \"I have never...\"",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"start:dev": "nodemon --trace-warnings index.js",
"migrate": "cd src/data && sequelize db:migrate && sequelize db:seed:all",
"migrate:undo": "cd src/data && sequelize db:migrate:undo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ev1ch/ihavenever-bot.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ev1ch/ihavenever-bot/issues"
},
"homepage": "https://github.com/Ev1ch/ihavenever-bot#readme",
"dependencies": {
"pg": "^8.7.1",
"sequelize": "^6.6.5",
"sequelize-cli": "^6.2.0",
"telegraf": "^4.3.0"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}