-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.43 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": "desafio-trybe",
"version": "1.0.0",
"main": "src/api/index.js",
"repository": "[email protected]:rslfilho/desafio-trybe.git",
"author": "Roberval Filho <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node .",
"dev": "nodemon .",
"test": "mocha src/tests/**/**/*$NAME*.test.js --exit",
"test:coverage": "nyc --all --reporter=lcov npm run test",
"test:unit": "mocha src/tests/01-unit/**/*$NAME*.test.js --exit",
"test:unit:coverage": "nyc --all npm run test:unit",
"test:integration": "mocha src/tests/02-integration/**/*$NAME*.test.js --exit",
"test:integration:coverage": "nyc --all npm run test:integration",
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json ."
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"sequelize": "^6.17.0",
"swagger-ui-express": "^4.3.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.10.0",
"eslint-config-trybe-backend": "^1.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-sonarjs": "^0.12.0",
"mocha": "^9.2.1",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"sequelize-cli": "^6.4.1",
"sequelize-test-helpers": "^1.4.2",
"sinon": "^13.0.1"
}
}