-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.93 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "api",
"version": "0.9.2",
"author": {
"name": "Jerónimo Matavel"
},
"license": "MIT",
"keywords": [
"clean architecture",
"TDD",
"DDD",
"Test-Driven Development",
"clean code",
"conventional commits",
"Rest API",
"SOLID principles",
"Design Patterns",
"Continuous Integration"
],
"scripts": {
"start": "node dist/src/main/server.js",
"build": "rimraf dist && tsc -p tsconfig-build.json && tsc-alias -p tsconfig-build.json",
"dev": "tsnd -r tsconfig-paths/register --transpile-only --inspect --ignore-watch node_modules src/main/server.ts | pino-pretty -c",
"lint": "eslint src tests",
"lint:fix": "yarn lint --fix",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "yarn test --watch -c jest-unit.config.js",
"test:integration": "yarn test --watch -c jest-integration.config.js",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --coverage",
"test-mutation": "stryker run"
},
"devDependencies": {
"@shelf/jest-mongodb": "^2.1.1",
"@stryker-mutator/core": "^5.5.1",
"@stryker-mutator/jest-runner": "^5.5.1",
"@stryker-mutator/typescript-checker": "^5.5.1",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/express-pino-logger": "^4.0.3",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.0",
"@types/pino": "^7.0.5",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"faker": "^5.5.3",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"supertest": "^6.1.6",
"ts-jest": "^27.1.2",
"ts-node-dev": "^1.1.8",
"tsc-alias": "^1.5.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-pino-logger": "^7.0.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.2.2",
"multer": "^1.4.4",
"pino": "^7.5.1",
"pino-pretty": "^7.3.0",
"swagger-ui-express": "^4.3.0",
"validator": "^13.7.0"
}
}