-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.84 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
{
"name": "invoicing-srv",
"version": "1.0.1",
"main": "lib/service.js",
"description": "Generic Invoicing Service",
"author": "n-fuse GmbH",
"repository": {
"type": "git",
"url": "https://github.com/restorecommerce/invoicing-srv.git"
},
"dependencies": {
"@restorecommerce/acs-client": "^3.0.1",
"@restorecommerce/chassis-srv": "^1.6.4",
"@restorecommerce/grpc-client": "^2.2.4",
"@restorecommerce/kafka-client": "^1.2.14",
"@restorecommerce/logger": "^1.3.2",
"@restorecommerce/rc-grpc-clients": "^5.1.42",
"@restorecommerce/resource-base-interface": "^1.6.4",
"@restorecommerce/service-config": "^1.0.16",
"redis": "^4.6.14",
"sprintf-js": "^1.1.3"
},
"devDependencies": {
"@alenon/grpc-mock-server": "^3.1.11",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@jest/globals": "^29.7.0",
"@restorecommerce/dev": "^0.0.13",
"@semantic-release-plus/docker": "^3.1.3",
"@types/elasticsearch": "^5.0.43",
"@types/jest": "^29.5.12",
"@types/sprintf-js": "^1.1.4",
"@types/uuid": "^10.0.0",
"async-mutex": "^0.5.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"should": "^13.2.3",
"ts-jest": "^29.2.5",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"scripts": {
"start": "node lib/start.cjs",
"dev": "cross-env NODE_ENV=development nodemon --watch './src/**/*.ts' --exec node --loader ts-node/esm ./src/start.ts",
"test": "npm-run-all lint jest",
"jest": "NODE_OPTIONS=--experimental-vm-modules cross-env NODE_ENV=test jest --runInBand --silent=false",
"lint": "eslint src --fix",
"build:es": "esbuild ./src/start.ts --bundle --platform=node --outfile=lib/start.cjs --minify --tree-shaking=true --sourcemap=inline",
"build:clean": "rimraf lib",
"build": "npm-run-all build:clean build:es",
"prepare": "node -e \"try { require('husky').install() } catch (e) {}\""
},
"engines": {
"node": ">= 18.2.0"
},
"type": "module",
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release-plus/docker",
{
"name": "docker.io/restorecommerce/invoicing-srv",
"skipLogin": true
}
],
[
"@semantic-release-plus/docker",
{
"name": "ghcr.io/restorecommerce/invoicing-srv",
"skipLogin": true
}
]
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}