-
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.22 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.22 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": "store-manager",
"version": "1.0.0",
"description": "API RESTFUL Nodejs using Model, Service, Controller architecture, and MySQL database to manage 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",
"debug": "nodemon index.js",
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json . --ext .js, .jsx"
},
"author": "Carlos Barros",
"license": "ISC",
"bugs": {
"url": "https://github.com/ocarlosbarros/store-manager/issues"
},
"homepage": "https://github.com/ocarlosbarros/store-manager#readme",
"dependencies": {
"@hapi/boom": "^9.1.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rescue": "^1.1.26",
"frisby": "^2.1.2",
"jest": "^26.4.1",
"joi": "^17.6.0",
"mysql2": "^2.3.0"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint-config-trybe-backend": "^1.0.3",
"mocha": "^8.4.0",
"mysql-import": "^5.0.21",
"nyc": "^15.1.0",
"sinon": "^11.1.1",
"nodemon": "^2.0.4"
}
}