-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.74 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.74 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
55
56
57
58
{
"name": "cqrs-es-example-js-query-interface-adaptor",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prisma:generate": "prisma generate",
"build": "tsc && rimraf dist/internal/*.test.d.ts && rimraf dist/internal/*.test.js && rimraf dist/internal/test && rimraf dist/*.test.*",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --no-cache",
"lint": "biome check ./src",
"lint:fix": "biome check --write ./src",
"format": "biome format ./src",
"format:fix": "biome format --write ./src",
"clean": "rimraf ./dist"
},
"keywords": [],
"author": "Junichi Kato <j5ik2o@gmail.com> (https://j5ik2o.me/)",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jest": "^29.5.5",
"@types/node": "^22.0.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"jest": "^29.7.0",
"prisma": "^6.0.0",
"rimraf": "^6.0.0",
"testcontainers": "^10.2.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typegraphql-prisma": "^0.28.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.413.0",
"@prisma/client": "^6.0.0",
"@types/graphql-fields": "^1.3.9",
"aws-sdk": "^2.1459.0",
"event-store-adapter-js": "2.2.166",
"fp-ts": "^2.16.2",
"graphql": "^16.8.1",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.22.4",
"moment": "^2.29.4",
"tslib": "^2.6.2",
"type-graphql": "2.0.0-rc.3",
"tslog": "^4.9.2"
},
"engines": {
"node": ">=20.5.0",
"pnpm": ">=8",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"packageManager": "pnpm@9.15.9"
}