-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.52 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.52 KB
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
{
"name": "clean-node-api",
"version": "1.0.0",
"description": "NodeJs Rest API using TDD, Clean Archtecture and TypeScript",
"main": "index.js",
"scripts": {
"start": "sucrase-node src/main/server.ts",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.3",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/mongodb": "^3.3.14",
"@types/node": "^17.0.23",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"git-commit-msg-linter": "^4.1.1",
"husky": "^4.0.6",
"jest": "^27.5.1",
"lint-staged": "^9.5.0",
"sucrase": "^3.21.0",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {
"bcrypt": "^5.0.1",
"express": "^4.17.3",
"fast-glob": "^3.2.11",
"mongodb": "^3.5.7",
"validator": "^13.7.0"
}
}