-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.33 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
{
"name": "@ocoda/event-sourcing",
"description": "NestJS Event Sourcing Library",
"author": "Dries Hooghe <dries@drieshooghe.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"docs:build": "turbo docs:build",
"test": "turbo test",
"test:cov": "turbo test:cov",
"ci": "turbo ci",
"lint": "turbo lint",
"format": "turbo format",
"benchmark": "turbo benchmark --",
"benchmark:report": "turbo benchmark:report"
},
"engines": {
"node": ">= 20.0.0"
},
"peerDependencies": {
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.2.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.6",
"@faker-js/faker": "^10.2.0",
"@nestjs/common": "11.1.6",
"@nestjs/core": "11.1.6",
"@nestjs/platform-express": "11.1.6",
"@nestjs/testing": "11.1.6",
"@swc-node/register": "^1.11.1",
"@swc/core": "1.13.5",
"@swc/jest": "0.2.39",
"@types/jest": "30.0.0",
"@types/node": "22.13.4",
"jest": "30.1.3",
"jest-mock": "30.0.5",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"turbo": "^2.5.6",
"typescript": "5.9.2"
},
"repository": {
"type": "git",
"url": "https://github.com/ocoda/event-sourcing"
},
"packageManager": "pnpm@10.4.0"
}