-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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": "tdd-and-clean-architecture",
"version": "1.0.0",
"description": "",
"main": "src/main/index.js",
"scripts": {
"start": "node ./src/main/index.js",
"test": "jest --colors --noStackTrace --passWithNoTests --runInBand",
"test:unit": "npm test -- -c jest-unit-config.js --watch",
"test:integration": "npm test -- -c jest-integration-config.js --watch",
"test:staged": "npm test -- --findRelatedTests --silent",
"test:ci": "npm test -- --coverage --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julioneljunior/tdd-and-clean-architecture.git"
},
"author": "Elcio Junior",
"license": "MIT",
"bugs": {
"url": "https://github.com/julioneljunior/tdd-and-clean-architecture/issues"
},
"homepage": "https://github.com/julioneljunior/tdd-and-clean-architecture#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@shelf/jest-mongodb": "^1.1.5",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.1.3",
"semistandard": "^14.2.0",
"supertest": "^4.0.2"
},
"semistandard": {
"env": [
"jest"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fast-glob": "^3.2.4",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.9",
"validator": "^13.1.1"
}
}