umbrello-api/package.json

36 lines
922 B
JSON
Raw Permalink Normal View History

2019-08-15 22:48:54 +02:00
{
"name": "umbrello-api",
2019-09-05 19:10:02 +02:00
"version": "0.1.0",
"description": "REST API for umbrello-bot",
2019-08-15 22:48:54 +02:00
"main": "server.js",
"scripts": {
"start": "nodemon --exec babel-node src/server.js",
"build": "babel src --out-dir dist",
"serve": "node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
2019-09-05 19:10:02 +02:00
"repository": {
"type": "git",
2020-03-01 23:50:34 +01:00
"url": "git+https://github.com/franjsco/umbrello-api.git"
2019-09-05 19:10:02 +02:00
},
2020-03-01 23:50:34 +01:00
"author": "franjsco",
2019-08-15 22:48:54 +02:00
"license": "GPL-3.0-or-later",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"nodemon": "^1.19.1"
},
"dependencies": {
"axios": "^0.21.1",
2019-08-15 22:48:54 +02:00
"dotenv": "^8.0.0",
"express": "^4.17.3",
"mongoose": "^5.7.5",
2019-08-15 23:20:33 +02:00
"winston": "^3.2.1"
2019-08-15 22:48:54 +02:00
}
}