-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
118 lines (118 loc) · 4.1 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "teraslice-workspace",
"displayName": "Teraslice",
"version": "2.10.0",
"private": true,
"homepage": "https://github.com/terascope/teraslice",
"bugs": {
"url": "https://github.com/terascope/teraslice/issues"
},
"type": "module",
"workspaces": [
"packages/*",
"e2e"
],
"scripts": {
"prebuild": "./packages/xlucene-parser/scripts/generate-engine.js",
"build": "tsc --build --verbose",
"postbuild": "yarn workspace teraslice-cli postbuild",
"build:cleanup": "./scripts/build-cleanup.sh",
"build:doctor": "./scripts/build-doctor.sh",
"build:fix": "echo '[DEPRECATED], use yarn run build:doctor instead'",
"build:pkg": "./scripts/build-pkg.sh",
"build:watch": "yarn run build --watch & yarn workspace teraslice-cli node build.js --watch",
"bump": "ts-scripts bump",
"docker:limit": "./scripts/docker-limit-check.sh",
"docker:listImages": "ts-scripts images list",
"docker:saveImages": "ts-scripts images save",
"docs": "ts-scripts docs",
"postinstall": "patch-package",
"k8s": "TEST_ELASTICSEARCH=true ELASTICSEARCH_PORT=9200 ts-scripts k8s-env",
"k8s:kafka": "TEST_ELASTICSEARCH=true ELASTICSEARCH_PORT=9200 TEST_KAFKA=true KAFKA_PORT=9092 ts-scripts k8s-env",
"k8s:minio": "TEST_MINIO=true MINIO_PORT=9000 TEST_ELASTICSEARCH=true ELASTICSEARCH_PORT=9200 ts-scripts k8s-env",
"k8s:noBuild": "TEST_ELASTICSEARCH=true ELASTICSEARCH_PORT=9200 SKIP_DOCKER_BUILD_IN_K8S=true ts-scripts k8s-env",
"k8s:rebuild": "ts-scripts k8s-env --rebuild",
"k8s:restart": "ts-scripts k8s-env --rebuild --skip-build",
"k8sV2": "TEST_ELASTICSEARCH=true ELASTICSEARCH_PORT=9200 CLUSTERING_TYPE='kubernetesV2' ts-scripts k8s-env",
"lint": "eslint",
"lint:fix": "yarn lint --fix && yarn sync",
"setup": "yarn $YARN_SETUP_ARGS && yarn run build --force",
"start": "node service.js",
"start:dev": "yarn build && env NODE_ENV=development node service.js",
"start:nodemon": "nodemon --exitcrash service.js",
"sync": "ts-scripts sync",
"test": "ts-scripts test"
},
"resolutions": {
"@types/lodash": "~4.17.13",
"debug": "~4.4.0",
"ms": "~2.1.3",
"nan": "~2.22.0",
"point-in-polygon-hao": "~1.1.0"
},
"devDependencies": {
"@eslint/js": "~9.16.0",
"@swc/core": "1.4.0",
"@swc/jest": "~0.2.36",
"@types/bluebird": "~3.5.42",
"@types/convict": "~6.1.6",
"@types/elasticsearch": "~5.0.43",
"@types/fs-extra": "~11.0.4",
"@types/jest": "~29.5.14",
"@types/lodash": "~4.17.13",
"@types/node": "~22.10.1",
"@types/uuid": "~10.0.0",
"eslint": "~9.16.0",
"jest": "~29.7.0",
"jest-extended": "~4.0.2",
"jest-watch-typeahead": "~2.2.2",
"node-notifier": "~10.0.1",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"ts-jest": "~29.2.5",
"typescript": "~5.2.2"
},
"engines": {
"node": ">=18.18.0",
"yarn": ">=1.22.19"
},
"os": [
"darwin",
"linux"
],
"documentation": "https://terascope.github.io/teraslice",
"terascope": {
"root": true,
"type": "monorepo",
"target": "ES2019",
"tests": {
"suites": {
"e2e": [],
"k8s-e2e": [],
"elasticsearch": [
"minio"
],
"search": [],
"restrained": [],
"unit": [],
"_for_testing_": [
"elasticsearch"
],
"k8s-env": []
}
},
"docker": {
"registries": [
"ghcr.io/terascope/teraslice"
]
},
"npm": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16.19.0",
"yarn": ">=1.22.19"
},
"version": 1
}
}