-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.37 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
{
"name": "clean-node-api",
"version": "2.5.6",
"description": "NodeJS Rest API using TDD, Clean Architecture and Typescritp",
"main": "index.js",
"scripts": {
"start": "node dist/main/server.js",
"debug": "nodemon -L --watch ./dist --inspect=0.0.0.0:9222 --nolazy ./dist/main/server.js",
"postbuild": "copyfiles -u 1 public/**/* dist/static",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"down": "docker-compose down",
"up": "npm run build && docker-compose up -d",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"check": "npm-check -s -u",
"clearCache": "jest --clearCache",
"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",
"pre-commit": "lint-staged",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@shelf/jest-mongodb": "^4.1.0",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.14",
"@types/jest": "^29.1.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/mongodb": "^4.0.7",
"@types/node": "^18.8.2",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.7",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"bson-objectid": "^2.0.3",
"copyfiles": "^2.4.1",
"eslint": "^8.24.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"git-commit-msg-linter": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.1.2",
"lint-staged": "^13.0.3",
"mockdate": "^3.0.5",
"rimraf": "^3.0.2",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongo-round": "^1.0.0",
"mongodb": "^4.10.0",
"nodemon": "^2.0.20",
"swagger-ui-express": "^4.5.0",
"validator": "^13.7.0"
},
"engines": {
"node": "12.x"
},
"_moduleAliases": {
"@": "dist"
}
}