-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "@nestjs/elasticsearch",
"version": "11.0.0",
"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"
},
"peerDependencies": {
"@elastic/elasticsearch": "^7.4.0 || ^8.0.0",
"@nestjs/common": "^10.0.0 || ^11.0.0",
"rxjs": "^7.2.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-angular": "19.7.0",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.18.0",
"@elastic/elasticsearch": "8.17.0",
"@nestjs/common": "11.0.3",
"@types/node": "22.10.7",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.4.1",
"prettier": "3.4.2",
"release-it": "18.1.1",
"rimraf": "6.0.1",
"rxjs": "7.8.1",
"typescript": "5.7.3",
"typescript-eslint": "8.20.0"
},
"lint-staged": {
"**/*.{ts,json}": []
}
}