-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.22 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
{
"name": "indexing-srv",
"version": "1.0.3",
"description": "Restore Commerce Elasticsearch indexing microservice",
"main": "./lib/start.js",
"author": "n-fuse GmbH",
"repository": {
"type": "git",
"url": "https://github.com/restorecommerce/indexing-srv.git"
},
"license": "MIT",
"keywords": [
"restore",
"commerce",
"microservice",
"indexing",
"elasticsearch"
],
"dependencies": {
"@elastic/elasticsearch": "^8.13.1",
"@restorecommerce/chassis-srv": "^1.6.1",
"@restorecommerce/cluster-service": "^1.0.3",
"@restorecommerce/grpc-client": "^2.2.1",
"@restorecommerce/kafka-client": "^1.2.7",
"@restorecommerce/logger": "^1.2.10",
"@restorecommerce/protos": "^6.8.7",
"@restorecommerce/service-config": "^1.0.12",
"async": "^3.2.5",
"bodybuilder": "^2.5.1",
"jsonfile": "^6.1.0",
"kafka-node": "^5.0.0",
"lodash": "^4.17.21",
"redis": "^4.6.14",
"traverse": "^0.6.9"
},
"devDependencies": {
"@types/async": "^3.2.24",
"@types/lodash": "^4.17.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-plugin-prefer-arrow-functions": "^3.3.2",
"mocha": "^10.4.0",
"nodemon": "^3.1.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rimraf": "^5.0.7",
"should": "^13.2.3",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.4.5",
"uuid": "^9.0.1"
},
"scripts": {
"build": "npm-run-all lint build:clean build:tsc",
"build:clean": "rimraf lib",
"build:tsc": "tsc -d",
"lcov-report": "nyc report --reporter=lcov",
"coveralls": "cross-env NODE_ENV=test; nyc --reporter text --reporter lcov npm test",
"dev": "cross-env NODE_ENV=development nodemon --watch './src/**/*.ts' --exec 'ts-node' src/start.ts",
"lint": "eslint src --ext .ts",
"mocha": "cross-env NODE_ENV=test mocha --full-trace --exit --timeout 30000",
"start": " node lib/start.js",
"test": "nyc npm run mocha",
"test-debug": "npm run mocha -- --inspect-brk"
},
"engines": {
"node": ">= 18.0.0"
}
}