-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
34
35
36
37
38
39
40
41
42
43
{
"name": "store-manager-api",
"version": "1.0.0",
"description": "CRUD API to management of Store",
"main": "index.js",
"scripts": {
"test": "jest --runInBand",
"test:mocha": "nyc --all --include models --include services --include controllers mocha test/unit/*.js --exit",
"start": "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/offpepe/Store-Manager-API.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/offpepe/Store-Manager-API/issues"
},
"homepage": "https://github.com/offpepe/Store-Manager-API#readme",
"dependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/joi": "^17.1.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rescue": "^1.1.26",
"faker": "^4.1.0",
"frisby": "^2.1.2",
"jest": "^26.4.1",
"mongodb": "^3.5.9",
"nodemon": "^2.0.4"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint-config-trybe-backend": "^1.0.3",
"mocha": "^8.4.0",
"mongodb-memory-server": "^6.9.6",
"nyc": "^15.1.0",
"sinon": "^11.1.1"
}
}