-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.18 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
70
71
72
73
74
75
76
77
{
"name": "elastictype",
"displayName": "@cytex/elastictype",
"version": "0.1.7",
"description": "Elastictype is a easy way to model application data stored in Elasticsearch. It is inpsired by mongoose and @nestjs/mongoose and thus includes type casting, validation, query building, hooks and much more. It is written in TypeScript and thus provides type safety.",
"keywords": [
"elasticsearch",
"odm",
"orm",
"mongoose",
"nestjs",
"nestjs-elasticsearch",
"elasticsearch-odm",
"elasticsearch-orm"
],
"repository": {
"type": "git",
"url": "https://github.com/cytex-media-solutions/elastictype"
},
"license": "MIT",
"author": "Cytex Media Solutions",
"maintainers": [
{
"name": "Simon Jutz",
"email": "[email protected]",
"url": "https://github.com/sjutz"
}
],
"type": "commonjs",
"main": "./build/index.js",
"typings": "./build/index.d.ts",
"scripts": {
"coverage": "jest --coverage",
"lint": "gts lint",
"test": "jest",
"clean": "gts clean & rimraf ./coverage",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"dependencies": {
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.10",
"@elastic/elasticsearch": "^8.9.0",
"@elastic/elasticsearch-mock": "^2.0.0",
"@nestjs/common": "^10.0.2",
"@nestjs/core": "^10.0.2",
"decorator-metadata": "^1.0.2",
"reflect-metadata": "^0.2.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.10",
"@babel/preset-env": "^7.13.12",
"@faker-js/faker": "^8.0.2",
"@nx/js": "19.8.4",
"@types/jest": "^29.0.0",
"@types/node": "20.16.10",
"eslint-plugin-prettier": "^5.0.0",
"rimraf": "^6.0.0",
"gts": "^5.0.1",
"husky": "^9.0.0",
"jest": "^29.4.1",
"jest-environment-node": "^29.4.1",
"nx": "19.8.4",
"ts-jest": "^29.1.0",
"ts-node": "10.9.2",
"typescript": "~5.6.0"
},
"engines": {
"node": ">=14.0.0"
},
"readme": "README.md"
}