-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.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": "pg-transactional-outbox-project",
"version": "1.0.0",
"description": "A PostgreSQL based transactional outbox and inbox pattern implementation to support exactly once message processing (with at least once message delivery).",
"author": {
"name": "Frank Zehelein",
"email": "f_npm@zehelein.de",
"url": "https://zehelein.de/"
},
"homepage": "https://github.com/Zehelein/pg-transactional-outbox/tree/master/lib#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Zehelein/pg-transactional-outbox.git"
},
"bugs": {
"url": "https://github.com/Zehelein/pg-transactional-outbox/issues"
},
"license": "MIT",
"scripts": {
"lib": "yarn workspace pg-transactional-outbox",
"lint": "eslint \"**/src/**/*.{ts,tsx}\"",
"infra:up": "cd infra && docker compose -f docker-compose.yml up -d",
"infra:down": "cd infra && docker compose -f docker-compose.yml down"
},
"private": true,
"keywords": [
"outbox",
"transactional-outbox",
"inbox",
"transactional-inbox",
"outbox-pattern",
"inbox-pattern",
"postgresql",
"postgres",
"logical-replication",
"pgoutput",
"microservices",
"typescript",
"nodejs"
],
"workspaces": [
"lib",
"examples/rabbitmq/*",
"examples/setup",
"__tests__"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript": "^5.6.2"
},
"resolutions": {
"braces": "3.0.3",
"micromatch": "4.0.8"
}
}