-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "mikro-orm-express-ts-example",
"version": "0.0.1",
"description": "Example integration of MikroORM into express (in typescript)",
"author": "Martin Adamek",
"license": "MIT",
"scripts": {
"start": "tsc && node dist/server",
"start:dev": "tsc-watch --onSuccess \"node dist/server\"",
"start:prod": "tsc && node dist/server",
"test": "jest --runInBand --silent"
},
"dependencies": {
"@mikro-orm/core": "^6.0.0",
"@mikro-orm/mongo-highlighter": "^1.0.0",
"@mikro-orm/mongodb": "^6.0.0",
"express": "^4.18.2",
"express-promise-router": "^4.1.1",
"tsc-watch": "^6.0.4",
"typescript": "5.3.3"
},
"devDependencies": {
"@mikro-orm/cli": "^6.0.0",
"@types/express": "^4.17.21",
"@types/express-promise-router": "^3.0.0",
"@types/jest": "29.5.12",
"@types/node": "20.11.24",
"@types/supertest": "^6.0.2",
"jest": "29.7.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./app/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}