-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.29 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
{
"name": "kindagoose",
"version": "1.3.10",
"description": "Integrate Typegoose with NestJS!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"nest",
"nestjs",
"mongoose",
"typegoose",
"mongo",
"mongodb"
],
"repository": {
"url": "/~https://github.com/GrapeoffJS/kindagoose",
"type": "git"
},
"homepage": "https://grapeoffjs.github.io/kindagoose/",
"author": "Dmitriy Grape <grapeoff.official@gmail.com>",
"engines": {
"node": ">=12.9.0"
},
"bugs": {
"url": "/~https://github.com/GrapeoffJS/kindagoose/issues",
"email": "grapeoff.official@gmail.com"
},
"readme": "/~https://github.com/GrapeoffJS/kindagoose#README.md",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"build:dev": "tsc --watch -p tsconfig.json",
"prepare": "yarn build"
},
"funding": [
{
"type": "individual",
"url": "https://donatty.com/grapeoff"
},
{
"type": "individual",
"url": "https://donate.stream/donate_62eaa193a0e75"
}
],
"license": "GPL-3.0-only",
"private": false,
"devDependencies": {
"@nestjs/common": "^10.3.8",
"@nestjs/core": "^10.3.8",
"@typegoose/typegoose": "^12.5.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-security": "^3.0.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-sonarjs": "^1.0.3",
"eslint-plugin-unicorn": "^53.0.0",
"mongoose": "^8.4.0",
"prettier": "^3.2.5",
"reflect-metadata": "^0.2.2",
"rimraf": "^5.0.7",
"rxjs": "^7.8.1",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@nestjs/common": "^10.3.8",
"@nestjs/core": "^10.3.8",
"@typegoose/typegoose": "^12.5.0",
"mongoose": "^8.4.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
}
}