-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.61 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
86
87
88
89
90
91
92
93
94
{
"name": "nest-services-monorepo",
"version": "0.0.1",
"private": true,
"description": "",
"license": "UNLICENSED",
"author": "reduce-map",
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:user-gateway": "nest start user-gateway --watch",
"dev:auth-service": "nest start auth-service --watch",
"dev:data-provider": "nest start data-provider --watch",
"test": "npm-run-all test:*",
"test:user-gateway": "jest --config ./apps/user-gateway/jest.config.js --forceExit --passWithNoTests",
"test:auth-service": "jest --config ./apps/auth-service/jest.config.js --forceExit --passWithNoTests",
"test:data-provider": "jest --config ./apps/data-provider/jest.config.js --forceExit --passWithNoTests",
"test-coverage": "jest --coverage",
"prebuild": "rimraf dist",
"build": "npm run prebuild && npm-run-all --parallel build:*",
"build:user-gateway": "nest build user-gateway",
"build:auth-service": "nest build auth-service",
"build:data-provider": "nest build data-provider",
"compodoc": "npx @compodoc/compodoc -p tsconfig.json -s",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"apps/**/*.ts\" \"libs/**/*.ts\"",
"tsc": "npx tsc --resolveJsonModule --skipLibCheck",
"precommit": "lint-staged && npm run lint && npm run tsc",
"prepare": "husky",
"prepush": "npm run test && npm run tsc",
"docker-compose:up:dev": "cross-env DOCKER_TARGET=development docker-compose -f docker-compose.yml -f docker-compose.dev.yml up",
"docker-compose:up:dev:build": "cross-env DOCKER_TARGET=development docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build",
"docker-compose:up:prod": "cross-env DOCKER_TARGET=production docker-compose up",
"docker-compose:up:prod:build": "cross-env DOCKER_TARGET=production docker-compose up --build",
"docker-compose:down": "docker-compose down"
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.0.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/microservices": "^10.3.10",
"@nestjs/mongoose": "^10.0.10",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/swagger": "^7.4.0",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.4",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"express-basic-auth": "^1.2.1",
"geoip-lite": "^1.4.10",
"joi": "^17.13.3",
"mongoose": "^8.5.2",
"nest-winston": "^1.9.7",
"nestjs-asyncapi": "^1.3.0",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1",
"speakeasy": "^2.0.0",
"uuid": "^10.0.0",
"winston": "^3.13.1"
},
"devDependencies": {
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.17",
"@types/geoip-lite": "^1.4.4",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/speakeasy": "^2.0.10",
"@types/supertest": "^6.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.1.4",
"jest": "^29.5.0",
"lint-staged": "^15.2.8",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
}
}