-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.67 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.67 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@ciscode/database-kit",
"version": "1.0.2",
"type": "module",
"description": "A NestJS-friendly, OOP-style database library providing a unified repository API for MongoDB and PostgreSQL.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "C International Service <info@ciscod.com>",
"repository": {
"type": "git",
"url": "https://github.com/CISCODE-MA/DatabaseKit.git"
},
"homepage": "https://github.com/CISCODE-MA/DatabaseKit#readme",
"bugs": {
"url": "https://github.com/CISCODE-MA/DatabaseKit/issues"
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"clean": "rm -rf dist coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --check .",
"format:write": "prettier --write .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"verify": "npm run lint && npm run typecheck && npm run test:cov",
"prepublishOnly": "npm run verify && npm run build",
"prepare": "husky install"
},
"engines": {
"node": ">=18"
},
"keywords": [
"database",
"mongodb",
"mongoose",
"postgres",
"postgresql",
"knex",
"repository",
"nestjs",
"nest",
"crud",
"orm",
"data-access",
"ciscode"
],
"dependencies": {
"knex": "^3.1.0",
"mongoose": "^8.22.0",
"pg": "^8.18.0"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0",
"reflect-metadata": "^0.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@eslint/js": "^9.28.0",
"@nestjs/common": "^11.1.12",
"@nestjs/core": "^11.1.12",
"@nestjs/testing": "^11.1.12",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^9.28.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.2.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"reflect-metadata": "^0.2.2",
"semantic-release": "^25.0.3",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.15",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml,yml}": "prettier --write"
}
}