-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
110 lines (110 loc) · 3.42 KB
/
package.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@event-driven-io/core",
"type": "module",
"version": "0.20.0",
"description": "Emmett - Event Sourcing development made simple",
"engines": {
"node": ">=20.11.1"
},
"private": true,
"scripts": {
"setup": "cat .nvmrc | nvm install; nvm use",
"build": "npm run build:ts && npm run build --ws",
"build:ts": "tsc -b",
"build:ts:watch": "tsc -b --watch",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:prettier": "prettier --check \"**/**/!(*.d).{ts,json,md}\"",
"lint:eslint": "eslint '**/*.ts'",
"fix": "run-s fix:eslint fix:prettier",
"fix:prettier": "prettier --write \"**/**/!(*.d).{ts,json,md}\"",
"fix:eslint": "eslint '**/*.ts' --fix",
"test": "run-s test:unit test:int test:e2e",
"test:unit": "glob -d -c \"node --import tsx --test\" **/*.unit.spec.ts",
"test:int": "glob -d -c \"node --import tsx --test\" **/*.int.spec.ts",
"test:e2e": "glob -d -c \"node --import tsx --test\" **/*.e2e.spec.ts",
"test:watch": "run-p test:unit:watch test:int:watch test:e2e:watch",
"test:unit:watch": "glob -d -c \"node --import tsx --test --watch\" **/*.unit.spec.ts",
"test:int:watch": "glob -d -c \"node --import tsx --test --watch\" **/*.int.spec.ts",
"test:e2e:watch": "glob -d -c \"node --import tsx --test --watch\" **/*.e2e.spec.ts",
"test:file": "node --preserve-symlinks --import tsx --test",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/event-driven-io/emmett.git"
},
"keywords": [
"Event Sourcing"
],
"author": "Oskar Dudycz",
"bugs": {
"url": "https://github.com/event-driven-io/emmett/issues"
},
"homepage": "https://event-driven-io.github.io/emmett/",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/node": "^22.5.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"glob": "^11.0.0",
"npm-run-all2": "^6.2.2",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.2.4",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"uuid": "^10.0.0",
"vitepress": "^1.3.3"
},
"peerDependencies": {
"@event-driven-io/pongo": "0.16.1",
"@types/express": "4.17.21",
"@types/node": "^22.4.1",
"@types/supertest": "6.0.2",
"web-streams-polyfill": "^4.0.0",
"supertest": "7.0.0"
},
"workspaces": [
"packages/emmett-shims",
"packages/emmett",
"packages/emmett-postgresql",
"packages/emmett-esdb",
"packages/emmett-expressjs",
"packages/emmett-testcontainers",
"packages/emmett-fastify",
"packages/emmett-tests"
],
"dependencies": {
"@testcontainers/postgresql": "^10.10.3",
"@types/benchmark": "^2.1.5",
"0x": "^4.1.4",
"benchmark": "^2.1.4",
"commander": "^12.1.0",
"dotenv": "^16.4.5"
}
}