-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.69 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
{
"name": "@hexancore/microorm",
"version": "0.1.0",
"type": "commonjs",
"engines": {
"node": ">=22"
},
"engine-strict": true,
"description": "Promise of delivering value through a good process🤝",
"author": "Andrzej Wasiak",
"license": "MIT",
"homepage": "https://hexancore.dev",
"keywords": [
"hexancore",
"microorm",
"postgrsql",
"ddd",
"orm"
],
"exports": {
".": {
"default": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"./testing": {
"default": {
"types": "./lib/Test/index.d.ts",
"default": "./lib/Test/index.js"
}
}
},
"peerDependencies": {
"@hexancore/common": "^0.16.2",
"@hexancore/core": "^0.16.2"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"tslib": "^2.6.3"
},
"devDependencies": {
"@hexancore/common": "^0.16.2",
"@hexancore/core": "^0.16.2",
"@hexancore/mocker": "^1.1.2",
"@mikro-orm/core": "^6.3.13",
"@mikro-orm/postgresql": "^6.3.13",
"@nestjs/cli": "^10.3.2",
"@nestjs/common": "^10.3.9",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.3.9",
"@nestjs/cqrs": "^10.2.7",
"@nestjs/platform-fastify": "^10.3.9",
"@nestjs/swagger": "^7.1.8",
"@nestjs/testing": "^10.3.9",
"@types/jest": "29.*",
"@types/node": "22.*",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.3.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "29.6.*",
"jest-docblock": "29.4.*",
"jest-expect-message": "^1.1.3",
"jest-runner": "29.6.*",
"jest-runner-groups": "^2.2.0",
"nestjs-cls": "^4.3.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "5.6.3"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexancore/typeorm.git"
},
"bugs": {
"url": "https://github.com/hexancore/typeorm/issues"
},
"directories": {
"lib": "lib"
},
"packageManager": "yarn@4.5.0",
"scripts": {
"build": "rm -fr ./lib && nest -p tsconfig.build.json build",
"lint": "eslint \"{src,test}/**/*.ts\"",
"jest": "node --disable-warning=ExperimentalWarning --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.ts",
"test": "yarn run jest --runInBand",
"test:clearCache": "yarn run jest --clearCache",
"test:unit": "yarn run jest --runInBand --group=unit",
"test:watch": "yarn run jest --runInBand --watchAll",
"test:cov": "yarn run jest --coverage",
"prepublish": "yarn run build",
"deps:upgrade": "yarn add -D @hexancore/common @hexancore/core"
}
}