forked from Char2sGu/nest-mikro-crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.88 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
{
"name": "nest-mikro-crud",
"version": "2.0.1",
"description": "Easily build RESTful CRUD APIs for production.",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"prebuild": "rimraf lib",
"build": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheNightmareX/nest-mikro-crud.git"
},
"keywords": [
"backend",
"web",
"nestjs",
"nest",
"crud",
"rest",
"restful",
"api",
"typescript",
"mikro-orm"
],
"author": {
"name": "Char2s",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TheNightmareX/nest-mikro-crud/issues"
},
"homepage": "https://github.com/TheNightmareX/nest-mikro-crud#readme",
"peerDependencies": {
"@nestjs/common": "^9.0.11",
"@nestjs/core": "^9.0.11",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.6",
"@mikro-orm/core": "^5.3.1",
"@mikro-orm/nestjs": "^5.1.1"
},
"dependencies": {},
"devDependencies": {
"@mikro-orm/core": "^5.3.1",
"@mikro-orm/nestjs": "^5.1.1",
"@mikro-orm/sqlite": "^5.3.1",
"@nestjs/common": "^9.0.11",
"@nestjs/core": "^9.0.11",
"@nestjs/mapped-types": "^1.1.0",
"@nestjs/platform-express": "^9.0.11",
"@nestjs/testing": "^9.0.11",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.7",
"@types/supertest": "^2.0.12",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"express": "^4.18.1",
"jest": "^28.1.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.6",
"sqlite3": "^5.0.11",
"supertest": "^6.2.4",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"files": [
"/src/*",
"/lib/*",
"!tsconfig.*",
"!*.spec.ts"
]
}