-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.67 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
{
"name": "@waytrade/microservice-core",
"version": "0.9.103",
"description": "Microservice Core Library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Matthias Frener <matthias.frener@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/waytrade/microservice-core",
"repository": {
"type": "git",
"url": "https://github.com/waytrade/microservice-core.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"files": [
"package.json",
"dist/"
],
"scripts": {
"clean": "rm -rf dist *.tsbuildinfo .eslintcache",
"build": "yarn clean && yarn tsc",
"build:watch": "tsc --watch",
"start": "node ./dist/example.js | pino-pretty -t \"SYS:yyyy-mm-dd HH:MM:ss.l\"",
"lint": "yarn eslint && yarn prettier:check",
"lint:fix": "yarn eslint:fix && yarn prettier:fix",
"jest": "rm -rf test-report && jest --maxConcurrency=1 --reporters=default --useStderr --runInBand --detectOpenHandles --verbose --coverage --no-cache",
"jest:ci": "rm -rf test-report && jest --maxConcurrency=1 --reporters=default --useStderr --runInBand --verbose --coverage --no-cache",
"create-lcov-badge": "lcov-badge2 -o ./test-report/coverage/coverage.svg -l \"Code Coverage\" ./test-report/coverage/lcov.info",
"test": "yarn jest && yarn create-lcov-badge",
"test:ci": "yarn jest:ci && yarn create-lcov-badge",
"prettier:cli": "prettier \"**/*.ts\"",
"prettier:check": "yarn prettier:cli -l",
"prettier:fix": "yarn prettier:cli --write",
"eslint": "eslint --report-unused-disable-directives .",
"eslint:fix": "yarn eslint --fix",
"prepare:release": "yarn lint:fix && yarn build && yarn test"
},
"engines": {
"node": ">=16.11.0"
},
"dependencies": {
"axios": "~0.24.0",
"cookie": "~0.4.1",
"dotenv": "~10.0.0",
"http-status": "~1.5.0",
"openapi3-ts": "~2.0.1",
"pino": "~7.5.1",
"pino-pretty": "~7.3.0",
"reflect-metadata": "~0.1.13",
"rxjs": "~7.4.0",
"swagger-ui-dist": "~4.1.2",
"tslib": "~2.3.1",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.4.0",
"ws": "~8.3.0"
},
"devDependencies": {
"@types/cookie": "~0.4.1",
"@types/jest": "~27.0.3",
"@types/node": "~16.11.0",
"@types/swagger-ui-dist": "~3.30.1",
"@types/ws": "~8.2.2",
"@typescript-eslint/eslint-plugin": "~5.8.0",
"@typescript-eslint/parser": "~5.8.0",
"eslint": "~8.5.0",
"eslint-plugin-rxjs": "~4.0.3",
"jest": "~27.4.3",
"jest-html-reporter": "~3.4.2",
"jest-junit": "~13.0.0",
"lcov-badge2": "~1.0.3",
"prettier": "~2.5.1",
"source-map-support": "~0.5.21",
"ts-jest": "~27.1.1",
"typescript": "~4.5.4"
}
}