-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.8 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": "@restorecommerce/scheduling-srv",
"version": "1.4.2",
"description": "Restorecommerce job scheduling microservice",
"main": "lib/start.js",
"author": "n-fuse GmbH",
"repository": {
"type": "git",
"url": "https://github.com/restorecommerce/scheduling-srv.git"
},
"license": "MIT",
"keywords": [
"restore",
"commerce",
"microservice",
"job",
"scheduling"
],
"type": "module",
"dependencies": {
"@bull-board/api": "6.5.3",
"@bull-board/express": "6.5.3",
"@bull-board/koa": "^6.5.3",
"@restorecommerce/acs-client": "3.0.9",
"@restorecommerce/chassis-srv": "1.6.6",
"@restorecommerce/kafka-client": "1.2.22",
"@restorecommerce/logger": "1.3.2",
"@restorecommerce/rc-grpc-clients": "5.1.44",
"@restorecommerce/scs-jobs": "^0.1.49",
"@restorecommerce/service-config": "1.0.16",
"bullmq": "5.29.1",
"cache-manager": "^6.2.0",
"cache-manager-redis": "^0.6.0",
"cron-parser": "^4.9.0",
"crypto": "^1.0.1",
"express": "5.0.1",
"lodash-es": "^4.17.21",
"uuid": "11.0.3"
},
"devDependencies": {
"@alenon/grpc-mock-server": "3.1.16",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@grpc/proto-loader": "^0.7.13",
"@restorecommerce/dev": "0.0.13",
"@restorecommerce/grpc-client": "2.2.5",
"@semantic-release-plus/docker": "^3.1.3",
"@types/express": "5.0.0",
"@types/lodash-es": "^4.17.12",
"@types/mocha": "10.0.10",
"@types/node": "^22.10.0",
"c8": "^10.1.2",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "0.24.0",
"eslint": "9.15.0",
"husky": "9.1.7",
"mocha": "11.0.0",
"nodemon": "3.1.7",
"npm-run-all": "^4.1.5",
"rimraf": "6.0.1",
"should": "^13.2.3",
"ts-node": "^10.9.2",
"typescript": "5.7.2",
"typescript-eslint": "^8.16.0"
},
"scripts": {
"start": "node lib/start.cjs",
"dev": "cross-env NODE_ENV=development node lib/start.cjs",
"test": "npm run lint && c8 --reporter=text npm run mocha",
"test-debug": "npm run mochadebug",
"lint": "eslint src",
"mocha": "cross-env NODE_ENV=test mocha --full-trace --exit --trace-warnings --exit",
"mochadebug": "cross-env NODE_ENV=test mocha --inspect-brk --full-trace --exit --trace-warnings --exit",
"lcov-report": "c8 report --reporter=lcov",
"coveralls": "c8 report --reporter=text-lcov | coveralls",
"build:es": "esbuild ./src/start.ts --bundle --platform=node --outfile=lib/start.cjs --minify --tree-shaking=true --sourcemap=inline",
"build:jobs": "find ./src/external-jobs -maxdepth 1 -type f -exec sh -c 'esbuild {} --bundle --platform=node --outfile=lib/external-jobs/$(basename {} .ts).cjs --minify --tree-shaking=true --sourcemap=inline' \\;",
"build:clean": "rimraf lib",
"copy:bullboard-ui-static": "npx copyfiles -u 1 \"./node_modules/@bull-board/ui/dist/**/*\" ./lib",
"build": "npm-run-all lint build:clean build:es build:jobs copy:bullboard-ui-static",
"prepare": "node -e \"try { require('husky').install() } catch (e) {}\""
},
"engines": {
"node": ">= 20.8.0"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release-plus/docker",
{
"name": "docker.io/restorecommerce/scheduling-srv",
"skipLogin": true
}
],
[
"@semantic-release-plus/docker",
{
"name": "ghcr.io/restorecommerce/schueduling-srv",
"skipLogin": true
}
]
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}