-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.37 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.37 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
{
"name": "cqrs-es-example-js-command-domain",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "tsc && rimraf dist/internal/*.test.d.ts && rimraf dist/internal/*.test.js && rimraf dist/internal/test && rimraf dist/group-chat/*.test.*",
"test": "node --experimental-vm-modules node_modules/.bin/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": "^20.6.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"jest": "^29.7.0",
"rimraf": "^6.0.0",
"testcontainers": "^10.2.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"cqrs-es-example-js-infrastructure": "workspace:*",
"event-store-adapter-js": "2.2.94",
"fp-ts": "^2.16.2",
"ulidx": "^2.3.0"
},
"engines": {
"node": ">=20.5.0",
"pnpm": ">=8",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"packageManager": "pnpm@9.15.5"
}