UNPKG

2.03 kBJSONView Raw
1{
2 "name": "@nestjs/mongoose",
3 "version": "10.0.6",
4 "description": "Nest - modern, fast, powerful node.js web framework (@mongoose)",
5 "author": "Kamil Mysliwiec",
6 "repository": "https://github.com/nestjs/mongoose.git",
7 "license": "MIT",
8 "main": "dist/index.js",
9 "types": "dist/index.d.ts",
10 "scripts": {
11 "lint": "eslint \"lib/**/*.ts\" --fix",
12 "format": "prettier \"lib/**/*.ts\" --write",
13 "build": "rm -rf dist && tsc -p tsconfig.build.json",
14 "precommit": "lint-staged",
15 "prepublish:npm": "npm run build",
16 "publish:npm": "npm publish --access public",
17 "prepublish:next": "npm run build",
18 "publish:next": "npm publish --access public --tag next",
19 "prerelease": "npm run build",
20 "release": "release-it",
21 "test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
22 "test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch",
23 "prepare": "husky install"
24 },
25 "devDependencies": {
26 "@commitlint/cli": "19.2.1",
27 "@commitlint/config-angular": "19.1.0",
28 "@nestjs/common": "10.3.7",
29 "@nestjs/core": "10.3.7",
30 "@nestjs/platform-express": "10.3.7",
31 "@nestjs/testing": "10.3.7",
32 "@types/jest": "29.5.12",
33 "@types/node": "20.12.7",
34 "@typescript-eslint/eslint-plugin": "7.6.0",
35 "@typescript-eslint/parser": "7.6.0",
36 "eslint": "8.57.0",
37 "eslint-config-prettier": "9.1.0",
38 "eslint-plugin-import": "2.29.1",
39 "eslint-plugin-prettier": "5.1.3",
40 "husky": "9.0.11",
41 "jest": "29.7.0",
42 "lint-staged": "15.2.2",
43 "mongoose": "8.3.1",
44 "prettier": "3.2.5",
45 "reflect-metadata": "0.2.2",
46 "release-it": "17.1.1",
47 "rxjs": "7.8.1",
48 "supertest": "6.3.4",
49 "ts-jest": "29.1.2",
50 "ts-node": "10.9.2",
51 "typescript": "5.4.5"
52 },
53 "peerDependencies": {
54 "@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
55 "@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0",
56 "mongoose": "^6.0.2 || ^7.0.0 || ^8.0.0",
57 "rxjs": "^7.0.0"
58 },
59 "lint-staged": {
60 "**/*.{ts,json}": []
61 }
62}