-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 726 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 726 Bytes
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
{
"name": "mikro-orm-filter-issue",
"version": "1.0.0",
"description": "",
"main": "tests/app.test.ts",
"type": "module",
"scripts": {
"test": "mocha -r ts-node/register 'tests/*.ts'"
},
"author": "",
"license": "ISC",
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
},
"dependencies": {
"@mikro-orm/core": "^4.4.1",
"@mikro-orm/migrations": "^4.4.1",
"@mikro-orm/postgresql": "^4.5.4",
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"ts-mocha": "^8.0.0"
},
"devDependencies": {
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}