-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "generic-typeorm-repository",
"version": "0.1.0",
"description": "A basic package aimed at providing a generic and extendable typeorm repository for nestjs apps.",
"files": [
"lib",
"dist",
"index.ts",
"index.js",
"README.md",
"LICENSE"
],
"main": "index.js",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"prepublish": "npm run build"
},
"devDependencies": {
"typescript": "^5.4.4",
"typeorm": "^0.3.0"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/typeorm": "^10.0.2",
"reflect-metadata": "^0.1.13 || ^0.2.0",
"typeorm": "^0.3.0",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmj0502/generic-typeorm-repository.git"
},
"keywords": [
"generic",
"typeorm",
"nestjs",
"typescript"
],
"author": "Jorge Juarez <[email protected]> (jmj0502)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmj0502/generic-typeorm-repository/issues"
},
"homepage": "https://github.com/jmj0502/generic-typeorm-repository#readme"
}