-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.45 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
{
"name": "event-store-adapter-js",
"version": "2.3.8-snapshot.0",
"description": "This library is designed to turn DynamoDB into an Event Store for Event Sourcing.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && rm -f dist/internal/*.test.d.ts && rm -f dist/internal/*.test.js && rm -fr dist/internal/test",
"test": "node --experimental-vm-modules node_modules/.bin/jest --no-cache",
"lint": "biome check src/",
"fmt": "biome format src/",
"fix": "biome check --write src/",
"clean": "rimraf ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/j5ik2o/event-store-adapter-js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"ddd",
"cqrs",
"evnet-sourcing",
"dynamodb"
],
"author": "Junichi Kato <j5ik2o@gmail.com>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"jest": "^30.0.0",
"rimraf": "6.1.3",
"testcontainers": "^11.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^6.0.0"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.413.0",
"aws-sdk": "^2.1459.0",
"moment": "^2.29.4",
"ulid": "^3.0.0",
"winston": "^3.10.0"
}
}