-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
45 lines (45 loc) · 1.33 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
{
"name": "@nestjs/elasticsearch",
"version": "10.0.2",
"description": "Nest - modern, fast, powerful node.js web framework (@elasticsearch)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"scripts": {
"lint": "eslint \"lib/**/*.ts\" --fix",
"format": "prettier \"lib/**/*.ts\" --write",
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prerelease": "npm run build",
"release": "release-it",
"prepare": "husky install"
},
"peerDependencies": {
"@elastic/elasticsearch": "^7.4.0 || ^8.0.0",
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"rxjs": "^7.2.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-angular": "19.6.0",
"@elastic/elasticsearch": "8.17.0",
"@nestjs/common": "10.4.15",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"release-it": "17.10.0",
"rimraf": "6.0.1",
"rxjs": "7.8.1",
"typescript": "5.7.2"
},
"lint-staged": {
"**/*.{ts,json}": []
}
}