forked from nmshd/connector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.41 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.41 KB
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
{
"name": "@nmshd/connector",
"version": "2.1.2",
"private": true,
"description": "The Enmeshed Business Connector",
"homepage": "https://enmeshed.eu/integrate",
"repository": "github:nmshd/cns-connector",
"license": "MIT",
"author": "j&s-soft GmbH",
"scripts": {
"lint": "npm run lint:tsc && npm run lint:prettier && npm run lint:eslint",
"lint:prettier": "prettier --check ./src ./test ./packages/*/src",
"lint:eslint": "eslint --ext .ts ./src ./test ./packages/*/src",
"lint:tsc": "lerna run build:ci && tsc --noEmit && tsc -p test/tsconfig.json --noEmit",
"build": "run-p tsc copy-additional-files",
"build:watch": "run-p -r tsc:watch copy-additional-files:watch",
"copy-additional-files": "npx cpx \"src/**/*.{json,yml,ico}\" dist",
"copy-additional-files:watch": "npx cpx \"src/**/*.{json,yml,ico}\" dist --watch",
"tsc": "tsc",
"tsc:watch": "tsc -w",
"test:ci": "jest -i",
"test:local": ". scripts/testSetup.sh && jest",
"test:watch": ". scripts/testSetup.sh && jest --watch",
"generate:connectorConfigSchema": "npx ts-json-schema-generator -p ./src/jsonSchemas/connectorConfig.ts -o ./src/jsonSchemas/connectorConfig.json -t \"ConnectorConfig\" --no-top-ref && prettier -w src/jsonSchemas/connectorConfig.json"
},
"jest": {
"maxWorkers": 2,
"preset": "ts-jest",
"setupFilesAfterEnv": [
"@alex_neo/jest-expect-message"
],
"testEnvironment": "node",
"testTimeout": 60000
},
"dependencies": {
"@js-soft/docdb-access-mongo": "1.0.3",
"@js-soft/node-logger": "1.0.0",
"@js-soft/ts-utils": "^1.1.1",
"@nmshd/runtime": "1.2.4",
"agentkeepalive": "4.1.4",
"axios": "0.24.0",
"compression": "1.7.4",
"cors": "2.8.5",
"express": "4.17.1",
"helmet": "4.6.0",
"json-stringify-safe": "5.0.1",
"jsonschema": "1.4.0",
"nconf": "0.11.3",
"on-headers": "1.0.2",
"rapidoc": "9.1.3",
"reflect-metadata": "0.1.13",
"swagger-ui-express": "4.3.0",
"typescript": "4.5.4",
"typescript-ioc": "3.2.2",
"typescript-rest": "3.0.4",
"typescript-rest-ioc": "1.0.1",
"yamljs": "0.3.0"
},
"devDependencies": {
"@alex_neo/jest-expect-message": "^1.0.5",
"@js-soft/eslint-config-ts": "1.4.2",
"@js-soft/license-check": "1.0.3",
"@nmshd/connector-sdk": "1.1.5",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "4.17.13",
"@types/helmet": "0.0.48",
"@types/jest": "^27.0.3",
"@types/jest-expect-message": "^1.0.3",
"@types/jest-json-schema": "^2.1.3",
"@types/json-stringify-safe": "^5.0.0",
"@types/luxon": "^2.0.8",
"@types/nconf": "^0.10.1",
"@types/node": "^17.0.0",
"@types/on-headers": "^1.0.0",
"@types/swagger-ui-express": "^4.1.3",
"@types/wait-on": "^5.3.1",
"@types/yamljs": "^0.2.31",
"eslint": "^8.4.1",
"get-port": "^5.1.1",
"jest": "^27.4.5",
"jest-json-schema": "^6.0.0",
"lerna": "^4.0.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"wait-on": "^6.0.0"
}
}