forked from fvilers/nestjs-algolia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
{
"name": "nestjs-algolia",
"version": "4.0.1",
"description": "The algolia NestJS module based on the official algolia package",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"build": "shx rm -rf dist && tsc -p tsconfig.json",
"prepare": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fvilers/nestjs-algolia.git"
},
"keywords": [
"nestjs",
"nest",
"nodejs",
"typescript",
"algolia",
"algolia-search"
],
"author": "Fabian Vilers <fabian.vilers@dev-one.com> (https://www.dev-one.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fvilers/nestjs-algolia/issues"
},
"homepage": "https://github.com/fvilers/nestjs-algolia#readme",
"dependencies": {
"algoliasearch": "3.32.0"
},
"devDependencies": {
"@nestjs/common": "^10.2.8",
"@nestjs/core": "^10.2.8",
"@nestjs/testing": "^10.2.8",
"@types/algoliasearch": "3.30.5",
"@types/jest": "^27.0.2",
"@types/node": "^14.0.0",
"husky": "1.3.1",
"jest": "^27.2.5",
"lint-staged": "13.2.1",
"prettier": "1.16.4",
"reflect-metadata": "0.1.12",
"rxjs": "^7.1.0",
"shx": "0.3.3",
"ts-jest": "^27.0.5",
"typescript": "^4.0.0"
},
"peerDependencies": {
"@nestjs/common": "^10.2.8"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"testEnvironment": "node"
}
}