Files
RESTapi_demo/package.json
T

46 lines
1.0 KiB
JSON

{
"name": "restapi_demo",
"version": "1.0.0",
"description": "REST api written with express and run with heroku",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha --exit --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gjcampbell777/RESTapi_demo.git"
},
"keywords": [
"js",
"express",
"node",
"heroku",
"rest",
"api"
],
"author": "Gregory Campbell",
"license": "ISC",
"bugs": {
"url": "https://github.com/gjcampbell777/RESTapi_demo/issues"
},
"homepage": "https://github.com/gjcampbell777/RESTapi_demo#readme",
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"mongoose": "^6.0.13",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"optionator": "^0.9.1"
},
"devDependencies": {
"eslint": "^8.3.0",
"jest": "^27.3.1",
"mocha": "^9.1.3",
"superagent": "^6.1.0",
"supertest": "^6.1.6"
}
}