-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 1.87 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": "^7.0.0",
"@nestjs/core": "^7.0.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.0.0",
"@mikro-orm/core": "^4.0.0",
"@mikro-orm/nestjs": "^4.0.0"
},
"dependencies": {},
"devDependencies": {
"@mikro-orm/core": "^4.5.5",
"@mikro-orm/nestjs": "^4.2.0",
"@mikro-orm/sqlite": "^4.5.5",
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"@nestjs/mapped-types": "^0.4.1",
"@nestjs/platform-express": "^7.6.15",
"@nestjs/testing": "^7.6.15",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.22",
"@types/supertest": "^2.0.11",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"express": "^4.17.1",
"jest": "^26.6.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.0.0",
"sqlite3": "^5.0.2",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"files": [
"/src/*",
"/lib/*",
"!tsconfig.*",
"!*.spec.ts"
]
}