-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "umbrello-bot",
"version": "0.1.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon --exec babel-node src/app.js",
"build": "babel src --out-dir dist",
"serve": "node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/franjsco/umbrello-bot.git"
},
"author": "franjsco",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/franjsco/umbrello-bot/issues"
},
"homepage": "https://github.com/franjsco/umbrello-bot#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^1.19.4"
},
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^8.0.0",
"mongoose": "^5.6.9",
"telegraf": "^3.32.0",
"winston": "^3.2.1"
}
}