-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
108 lines (108 loc) · 3.34 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@event-driven-io/pongo-core",
"version": "0.16.4",
"description": "Pongo - Mongo with strong consistency on top of Postgres",
"type": "module",
"engines": {
"node": ">=20.11.1"
},
"private": true,
"scripts": {
"setup": "cat .nvmrc | nvm install; nvm use",
"build": "npm run build:ts && npm run build --ws",
"build:ts": "tsc -b",
"build:ts:watch": "tsc -b --watch",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:prettier": "prettier --check \"**/**/!(*.d).{ts,json,md}\"",
"lint:eslint": "eslint '**/*.ts'",
"fix": "run-s fix:eslint fix:prettier",
"fix:prettier": "prettier --write \"**/**/!(*.d).{ts,json,md}\"",
"fix:eslint": "eslint '**/*.ts' --fix",
"test": "run-s test:unit test:int test:e2e",
"test:unit": "glob -d -c \"node --import tsx --test\" **/*.unit.spec.ts",
"test:int": "glob -d -c \"node --import tsx --test\" **/*.int.spec.ts",
"test:e2e": "glob -d -c \"node --import tsx --test\" **/*.e2e.spec.ts",
"test:watch": "run-p test:unit:watch test:int:watch test:e2e:watch",
"test:unit:watch": "glob -d -c \"node --import tsx --test --watch\" **/*.unit.spec.ts",
"test:int:watch": "glob -d -c \"node --import tsx --test --watch\" **/*.int.spec.ts",
"test:e2e:watch": "glob -d -c \"node --import tsx --test --watch\" **/*.e2e.spec.ts",
"test:file": "node --import tsx --test",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"copy:readme": "cpy '../README.md' 'packages/pongo/src'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/event-driven-io/Pongo.git"
},
"keywords": [
"Event Sourcing"
],
"author": "Oskar Dudycz",
"bugs": {
"url": "https://github.com/event-driven-io/Pongo/issues"
},
"homepage": "https://event-driven-io.github.io/Pongo/",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@testcontainers/mongodb": "^10.11.0",
"@testcontainers/postgresql": "^10.11.0",
"@types/mongodb": "^4.0.7",
"@types/node": "^22.4.1",
"@types/pg": "^8.11.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "8.2.0",
"@typescript-eslint/parser": "8.2.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"glob": "^11.0.0",
"npm-run-all2": "^6.2.2",
"prettier": "^3.3.3",
"testcontainers": "^10.11.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.2.4",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"uuid": "^10.0.0",
"vitepress": "^1.3.3"
},
"peerDependencies": {
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"pg": "^8.12.0",
"pg-connection-string": "^2.6.4",
"ansis": "^3.3.2"
},
"dependencies": {
"@types/benchmark": "^2.1.5",
"0x": "^4.1.4",
"benchmark": "^2.1.4",
"cpy-cli": "^5.0.0",
"dotenv": "^16.4.5"
},
"workspaces": [
"packages/dumbo",
"packages/pongo"
]
}