-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.73 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.73 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@mobile-reality/nestjs-outbox",
"version": "0.0.1-alpha.7",
"description": "Multi-engine outbox pattern for NestJS",
"author": "Mobile Reality <biuro@mobilereality.pl> (https://mobilereality.pl)",
"contributors": [
{
"name": "@NtTestAlert",
"url": "https://github.com/NtTestAlert"
}
],
"keywords": [
"nestjs",
"outbox",
"typeorm",
"mobilereality",
"mobile reality"
],
"repository": "https://github.com/MobileReality/nestjs-outbox",
"bugs": {
"url": "https://github.com/MobileReality/nestjs-outbox/issues"
},
"homepage": "https://github.com/MobileReality/nestjs-outbox/#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"test:typeorm:mysql": "cross-env DB_TYPE=mysql node --expose-gc --max-old-space-size=3072 ./node_modules/jest/bin/jest.js --config=./test/jest.typeorm.config.js --runInBand --logHeapUsage",
"test:typeorm:postgres": "cross-env DB_TYPE=postgres node --expose-gc --max-old-space-size=3072 ./node_modules/jest/bin/jest.js --config=./test/jest.typeorm.config.js --runInBand --logHeapUsage",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"prepare": "(npx husky install || echo no-husky) && npm run build",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prerelease": "npm run build"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --ext .js,.ts --fix -f compact"
]
},
"files": [
"dist",
"!**/*.tsbuildinfo"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"dependencies": {
"crc": "^4.1.1",
"date-fns": "^2.29.3",
"lodash": "^4.17.21",
"mnemonist": "^0.39.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@mobile-reality/eslint-config": "^0.8.0",
"@nestjs/common": "^8.4.7",
"@nestjs/core": "^8.4.7",
"@nestjs/platform-express": "^8.4.7",
"@nestjs/typeorm": "~8.0.4",
"@types/jest": "^28.0.0",
"@types/lodash": "^4.14.185",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "~5.31.0",
"@typescript-eslint/parser": "~5.31.0",
"cross-env": "^7.0.3",
"eslint": "~8.20.0",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "^28.0.0",
"jest-extended": "^3.0.0",
"lint-staged": "^13.1.0",
"mysql2": "^2.3.3",
"pg": "^8.8.0",
"pinst": "^3.0.0",
"pino": "^8.6.0",
"prettier": "^2.7.1",
"rimraf": "^4.1.0",
"ts-jest": "^28.0.0",
"ts-loader": "^9.3.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typeorm": "0.2.38",
"typescript": "4.7.3"
},
"peerDependencies": {
"@mikro-orm/core": "^5.3.1",
"@mikro-orm/nestjs": "^5.1.1",
"@mikro-orm/postgresql": "^5.3.1",
"@nestjs/common": "^8.0.0 || ^9.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0",
"@nestjs/typeorm": "^8.0.4 || ^9.0.0",
"date-fns": "^2.29.3",
"pino": "^8.6.0",
"reflect-metadata": "^0.1.13",
"typeorm": "~0.2.38 || ~0.3.1"
},
"peerDependenciesMeta": {
"@nestjs/typeorm": {
"optional": true
},
"typeorm": {
"optional": true
},
"@mikro-orm/core": {
"optional": true
},
"@mikro-orm/nestjs": {
"optional": true
},
"@mikro-orm/postgresql": {
"optional": true
},
"pino": {
"optional": true
}
}
}