-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 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
{
"name": "clean-node-api",
"version": "2.0.1",
"description": "",
"main": "index.js",
"author": "LuanRCV",
"license": "ISC",
"scripts": {
"start": "node dist/main/server.js",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"compose-up": "docker-compose up",
"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"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.3",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.3",
"@types/module-alias": "^2.0.2",
"@types/mongodb": "^3.3.14",
"@types/node": "^20.3.1",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.5",
"@types/validator": "^13.7.17",
"eslint-config-standard-with-typescript": "^35.0.0",
"git-commit-msg-linter": "^5.0.4",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"mockdate": "^3.0.5",
"rimraf": "^5.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"bcrypt": "^5.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"mongodb": "^3.5.1",
"swagger-ui-express": "^5.0.0",
"validator": "^13.9.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:ci"
}
},
"_moduleAliases": {
"@data": "dist/data",
"@domain": "dist/domain",
"@infra": "dist/infra",
"@main": "dist/main",
"@presentation": "dist/presentation",
"@validation": "dist/validation"
}
}