-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.92 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
{
"name": "@fjanicki/nestjs-ddd",
"version": "2.1.4",
"description": "Utilities to work with DDD in NestJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"rimraf": "npx rimraf dist",
"build": "tsc",
"test": "test",
"release": "release-it",
"format": "eslint \"src/**/*.ts\" --fix",
"lint": "eslint \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/fjanicki/nestjs-ddd.git"
},
"keywords": [
"nestjs",
"ddd",
"typescript"
],
"author": "Frederic Portaria-Janicki",
"license": "ISC",
"bugs": {
"url": "https://github.com/fjanicki/nestjs-ddd/issues"
},
"homepage": "https://github.com/fjanicki/nestjs-ddd#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@aws-sdk/client-sqs": "^3.360.0",
"@badrap/result": "^0.2.13",
"@mikro-orm/core": "^5.7.12",
"@mikro-orm/nestjs": "^5.1.8",
"@nestjs/common": "^10.0.2",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.0.2",
"@nestjs/cqrs": "^10.0.0",
"@nestjs/event-emitter": "^2.0.0",
"@nestjs/microservices": "^10.0.3",
"@nestjs/swagger": "^7.0.2",
"@nestjs/testing": "^10.0.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"nanoid": "^3.3.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"sqs-consumer": "^7.2.1",
"sqs-producer": "^3.1.3",
"typescript": "^5.1.3",
"uuid": "^9.0.0"
},
"lint-staged": {
"**/*.{ts,json}": []
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"release-it": "^15.11.0",
"rimraf": "^5.0.1",
"supertest": "^6.3.3"
},
"packageManager": "[email protected]"
}