-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "eventstore-helpers-monorepo",
"version": "0.0.0",
"description": "Helper functions for working with EventStoreDB streams and snapshots",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"workspaces": [
"projects/*"
],
"scripts": {
"build": "nx run-many --target=build --all",
"test": "nx run-many --target=test --all",
"lint": "nx run-many --target=lint --all",
"prepare": "npm run build",
"build-modules": "nx run eventstore-helpers:build"
},
"keywords": [
"eventstoredb",
"event-sourcing",
"typescript",
"snapshots"
],
"author": "",
"license": "MIT",
"private": true,
"dependencies": {
"@eventstore/db-client": "^6.2.1",
"tslib": "^2.3.0"
},
"devDependencies": {
"@nx/node": "^17.0.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.7.0",
"nx": "17.2.8",
"ts-jest": "^29.1.1",
"typescript": "^5.0.0"
}
}