-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.24 KB
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": "@deenruv/elasticsearch-plugin",
"version": "1.0.16",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"watch": "tsc -p ./tsconfig.build.json --watch",
"build": "rimraf lib && tsc -p ./tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest --run",
"e2e": "cross-env PACKAGE=elasticsearch-plugin vitest --config ../../e2e-common/vitest.config.mts --run",
"e2e:watch": "cross-env PACKAGE=elasticsearch-plugin vitest --config ../../e2e-common/vitest.config.mts"
},
"homepage": "https://deenruv.com/",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@deenruv/common": "workspace:^",
"@elastic/elasticsearch": "~7.9.1",
"@nestjs/common": "^10.3.10",
"@nestjs/graphql": "^12.2.0",
"@nestjs/terminus": "^10.2.3",
"deepmerge": "^4.2.2",
"fast-deep-equal": "^3.1.3"
},
"devDependencies": {
"@deenruv/core": "workspace:^",
"rimraf": "^5.0.5",
"rxjs": "7.8.1",
"typescript": "5.3.3"
},
"peerDependencies": {
"@deenruv/core": "^1.0.0",
"@nestjs/core": "^10.3.10",
"graphql-tag": "^2.12.6",
"rxjs": "7.8.1",
"typeorm": "^0.3.20"
}
}