-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 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
{
"name": "enquetes-node-api",
"version": "0.0.1",
"description": "API in NodeJs, Typescript using TDD, Clean Architecture, Design Patterns and SOLID",
"main": "index.js",
"scripts": {
"start": "sucrase-node src/main/server.ts",
"test": "jest --passWithNoTests --runInBand --no-cache",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "pnpm t -- --watch -c jest-unit-config.js",
"test:integration": "pnpm t -- --watch -c jest-integration-config.js",
"test:staged": "pnpm t -- --findRelatedTests .",
"test:ci": "pnpm t -- --coverage",
"test:coveralls": "pnpm test:ci && coveralls < coverage/lcov.info",
"test:clear": "jest --clearCache",
"prepare": "husky"
},
"keywords": [
"clean architecture",
"clean code",
"tdd",
"ddd",
"solid",
"design patterns",
"node",
"typescript",
"jest"
],
"author": "Beto Mossmann",
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^8.4.0",
"@shelf/jest-mongodb": "^4.2.0",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.10",
"@types/supertest": "^6.0.2",
"@types/validator": "^13.11.8",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"git-commit-msg-linter": "^5.0.6",
"husky": "^9.0.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"sucrase": "^3.35.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"bcrypt": "^5.1.1",
"express": "^4.18.2",
"fast-glob": "^3.3.2",
"module-alias": "^2.2.3",
"mongodb": "^6.3.0",
"validator": "^13.11.0"
},
"engines": {
"node": ">=14.x <=18.x"
}
}