-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.45 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
80
81
82
83
84
85
{
"name": "@golee/mongo-nest",
"version": "0.0.10",
"description": "Embrace the freedom to use mongodb on nest without necessarily resorting to mongoose 🍃",
"author": "Golee Team <[email protected]>",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"main": "dist/index",
"types": "dist/index.d.ts",
"private": false,
"keywords": [
"nest",
"mongodb",
"mongo"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GoleeTeam/mongo-nest.git"
},
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.build.json",
"test": "jest",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build",
"prepare": "husky install",
"check": "cspell lint --quiet src/**/*ts"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0",
"mongodb": "^4.0.0 || ^5.0.0 || ^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@nestjs/common": "^10.4.5",
"@nestjs/core": "^10.4.5",
"@nestjs/testing": "^10.4.5",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.6",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"cspell": "^8.15.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"mongodb": "^6.9.0",
"mongodb-memory-server": "^10.1.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*spec\\.ts$",
"testPathIgnorePatterns": [
".api-spec.ts$"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.json": "prettier --write"
}
}