This repository was archived by the owner on Dec 20, 2023. It is now read-only.
forked from Davide-Gheri/nestjs-algoliasearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
{
"name": "nestjs-algoliasearch",
"version": "1.0.0",
"main": "index.js",
"repository": "https://@github.com:Davide-Gheri/nestjs-algoliasearch.git",
"author": "Davide Gheri <[email protected]>",
"license": "MIT",
"scripts": {
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"test": "jest",
"lint": "eslint 'lib/**/*.ts'",
"build": "rm -rf dist && ./build.js",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prerelease": "npm run build",
"release": "release-it",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@algolia/client-search": "^4.2.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@nestjs/common": "^7.6.17",
"@nestjs/core": "^7.6.18",
"@nestjs/testing": "^7.6.18",
"@release-it/conventional-changelog": "^3.0.1",
"@types/jest": "^27.0.2",
"@types/node": "16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"algoliasearch": "^4.2.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.23.4",
"estrella": "^1.4.1",
"husky": "6",
"jest": "^27.2.4",
"lint-staged": "^11.1.2",
"pinst": "^2.1.6",
"prettier": "^2.3.2",
"reflect-metadata": "^0.1.13",
"release-it": "^14.10.0",
"rxjs": "^7.3.1",
"ts-jest": "^27.0.5",
"ts-node": "^9.1.1",
"typescript": "^4.4.3",
"uvu": "^0.5.1"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0",
"algoliasearch": "^4.2.0"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"testEnvironment": "node"
}
}