-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 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": "mikro-orm-nest-ts-example",
"version": "0.0.1",
"description": "Example integration of MikroORM into Nest (in typescript)",
"author": "Martin Adamek",
"license": "MIT",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"start": "tsx src/main.ts",
"start:dev": "tsx watch src/main.ts",
"start:debug": "tsx watch --inspect src/main.ts",
"prestart:prod": "rimraf dist && tsc",
"start:prod": "node dist/main.js",
"start:hmr": "node dist/server",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage"
},
"dependencies": {
"@mikro-orm/core": "^7.0.6",
"@mikro-orm/decorators": "^7.0.6",
"@mikro-orm/mysql": "^7.0.6",
"@mikro-orm/nestjs": "^7.0.1",
"@mikro-orm/reflection": "^7.0.6",
"@mikro-orm/sql-highlighter": "^1.0.1",
"@nestjs/common": "^11.0.6",
"@nestjs/core": "^11.0.6",
"@nestjs/platform-express": "^11.0.6",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1",
"typescript": "^6.0.0"
},
"devDependencies": {
"@mikro-orm/cli": "^7.0.6",
"@nestjs/testing": "^11.0.6",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.3",
"@types/express": "^5.0.0",
"@types/node": "^24.0.0",
"@types/supertest": "^7.0.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.0",
"supertest": "^7.0.0",
"tsx": "^4.19.0",
"unplugin-swc": "^1.5.9",
"vitest": "^4.1.0"
},
"engines": {
"node": ">= 22.17.0"
},
"mikro-orm": {
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
},
"packageManager": "yarn@4.13.0"
}