46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "games-store-back",
|
|
"version": "1.0.0",
|
|
"description": "Simple CRUD to sales and products",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "jest --runInBand",
|
|
"test:mocha": "nyc --all --include models --include services --include controllers mocha test/unit/*.js --exit",
|
|
"start": "node index.js",
|
|
"dev": "nodemon index.js",
|
|
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json . --ext .js, .jsx"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tryber/sd-02-project-store-manager.git"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/tryber/sd-02-project-store-manager/issues"
|
|
},
|
|
"homepage": "https://github.com/tryber/sd-02-project-store-manager#readme",
|
|
"dependencies": {
|
|
"@hapi/boom": "^9.1.0",
|
|
"@hapi/joi": "^17.1.1",
|
|
"body-parser": "^1.19.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^8.6.0",
|
|
"express": "^4.17.1",
|
|
"express-rescue": "^1.1.26",
|
|
"faker": "^4.1.0",
|
|
"frisby": "^2.1.2",
|
|
"jest": "^26.4.1",
|
|
"mongodb": "^3.6.10"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.3.4",
|
|
"eslint-config-trybe-backend": "^1.0.3",
|
|
"mocha": "^10.2.0",
|
|
"mongodb-memory-server": "^6.9.6",
|
|
"nodemon": "^2.0.4",
|
|
"nyc": "^15.1.0",
|
|
"sinon": "^11.1.1"
|
|
}
|
|
}
|