-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.6 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
46
47
48
49
50
51
{
"name": "sd-0x-store-manager",
"version": "1.0.0",
"description": "Simple CRUD to sales and products",
"main": "src/server.js",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"test": "jest --config ./jest.config.js --runInBand --detectOpenHandles",
"test:mocha": "nyc --all --include src/models --include src/services --include src/controllers mocha tests/unit/**/*.js --exit",
"start": "node src/server.js",
"debug": "nodemon --ignore coverage --inspect=0.0.0.0:9229 src/server.js",
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json . --ext .js, .jsx",
"migration": "node -e \"require('./__tests__/_utils').runMigration()\"",
"seed": "node -e \"require('./__tests__/_utils').runSeed()\""
},
"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",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-async-errors": "3.1.1",
"joi": "17.6.0",
"mysql2": "2.3.0",
"shelljs": "0.8.5"
},
"devDependencies": {
"chai": "4.3.4",
"chai-http": "4.3.0",
"eslint-config-trybe-backend": "1.0.4",
"frisby": "2.1.2",
"jest": "26.4.1",
"mocha": "8.4.0",
"nodemon": "2.0.4",
"nyc": "15.1.0",
"sinon": "11.1.1",
"sinon-chai": "3.7.0"
}
}