-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.67 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
52
53
54
{
"name": "sd-0x-store-manager",
"version": "1.0.0",
"description": "Simple CRUD to sales and products",
"main": "index.js",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"test": "jest --config ./jest.config.js --runInBand --detectOpenHandles",
"test:mocha": "nyc --all --include models --include services --include controllers mocha tests/unit/**/*.js --exit",
"start": "node index.js",
"debug": "nodemon --ignore coverage index.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-rescue": "^1.1.26",
"joi": "^17.6.0",
"mysql2": "^2.3.0",
"shelljs": "^0.8.5",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"@types/swagger-ui-express": "^4.1.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint-config-trybe-backend": "^1.0.4",
"frisby": "^2.1.2",
"jest": "^26.4.1",
"mocha": "^8.4.0",
"mysql-import": "^5.0.21",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"sinon": "^11.1.1",
"supertest": "^6.2.2"
}
}