-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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
{
"name": "nestjs-kysely",
"version": "1.0.0",
"description": "Kysely module for NestJS",
"keywords": [
"kysely",
"nestjs"
],
"author": "kzmat",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kzmat/nestjs-kysely"
},
"bugs": "https://github.com/kzmat/nestjs-kysely/issues",
"main": "./dist/index.js",
"files": [
"dist/**/*",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "yarn clean && tsc -p tsconfig.lib.json",
"clean": "rimraf ./dist",
"format": "deno fmt -c deno.jsonc",
"lint": "deno lint -c deno.jsonc",
"test": "jest",
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0",
"kysely": "0.x",
"reflect-metadata": "^0.1.13 || ^0.2.2"
},
"devDependencies": {
"@nestjs/common": "^10.3.8",
"@nestjs/core": "^10.3.8",
"@nestjs/testing": "^10.3.8",
"@types/better-sqlite3": "^7.6.10",
"@types/jest": "^29.5.12",
"@types/pg": "^8.11.6",
"better-sqlite3": "^10.0.0",
"jest": "^29.7.0",
"kysely": "^0.27.3",
"mysql2": "^3.9.7",
"pg": "^8.11.5",
"reflect-metadata": "^0.2.2",
"rimraf": "^5.0.7",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.3",
"typescript": "^5.4.5"
}
}