-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.31 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
44
45
{
"name": "sd-0x-store-manager",
"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",
"debug": "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",
"body-parser": "^1.19.0",
"camelcase-keys": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"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"
}
}