forked from nestjs/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
46
{
"name": "@nestjs/elasticsearch",
"version": "8.1.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"
},
"peerDependencies": {
"@elastic/elasticsearch": "^7.4.0 || ^8.0.0",
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0",
"rxjs": "^6.2.1 || ^7.2.0"
},
"devDependencies": {
"@commitlint/cli": "17.0.0",
"@commitlint/config-angular": "17.0.0",
"@elastic/elasticsearch": "8.2.0",
"@nestjs/common": "8.4.5",
"@types/node": "16.11.36",
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"husky": "8.0.1",
"lint-staged": "12.4.1",
"prettier": "2.6.2",
"release-it": "15.0.0",
"rimraf": "3.0.2",
"rxjs": "7.5.5",
"typescript": "4.6.4"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}