forked from axa-group/bauta.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.75 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
{
"name": "bautajs",
"repository": {
"type": "git",
"url": "git+https://github.com/axa-group/bauta.js.git"
},
"keywords": [
"middleware",
"express",
"fastify",
"agent",
"proxy",
"multipart"
],
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/axa-group/bauta.js/issues"
},
"homepage": "https://github.com/axa-group/bauta.js#readme",
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-pino-logger": "^4.0.3",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/pino": "^7.0.5",
"@types/split2": "^3.2.1",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "4.1.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"bench": "^0.3.6",
"commitizen": "^4.2.4",
"commitlint": "^17.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.0.0",
"fast-safe-stringify": "^2.1.1",
"form-data": "^4.0.0",
"got": "^11.8.5",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-config": "^28.1.1",
"jest-extended": "2.0.0",
"jest-junit": "13.2.0",
"jest-sonar-reporter": "^2.0.0",
"lerna": "^5.1.5",
"nock": "^13.2.7",
"node-mocks-http": "^1.11.0",
"pino": "^8.4.2",
"prettier": "^2.7.1",
"prettier-check": "^2.0.0",
"split2": "^4.1.0",
"stream-mock": "^2.0.5",
"supertest": "^6.2.3",
"ts-jest": "^28.0.5",
"typescript": "4.8.x"
},
"scripts": {
"lerna": "lerna",
"cm": "git-cz",
"benchmark-core": "npx concurrently -k -s first \"node ./packages/bautajs-core/benchmark/simple.js\" \"npx autocannon -c 100 -d 5 -p 10 localhost:3000/api/op1\"",
"benchmark-express": "npx concurrently -k -s first \"node ./packages/bautajs-express/benchmark/simple.js\" \"npx autocannon -c 20 -d 5 -p 10 localhost:3000/api/op1\"",
"benchmark-fastify": "npx concurrently -k -s first \"node ./packages/bautajs-fastify/benchmark/simple.js\" \"npx autocannon -c 100 -d 5 -p 10 localhost:3000/api/op1\"",
"lint": "eslint '*/**/*.{ts,tsx}' ",
"bootstrap": "npm run lerna bootstrap -- --no-ci",
"prepare": "husky install && npm run lerna bootstrap -- --no-ci && npm run build",
"clean": "npm run lerna clean -- --yes && git clean -dfqX -- ./node_modules **/{dist,node_modules}/ ./packages/*/tsconfig*tsbuildinfo ./packages/*/package-lock.json ./coverage",
"release:local": "npm run clean && npm i && npm run test && lerna publish --exact --conventional-commits --no-verify-access --no-verify-registry --yes",
"release": "lerna publish --exact --conventional-commits --no-verify-access --no-verify-registry --yes",
"release:from-package": "lerna publish from-package --exact --no-verify-access --no-verify-registry --yes",
"test": "jest --verbose --detectOpenHandles",
"test:clean": "jest --clearCache",
"test:watch": "npm run test -- --watchAll",
"checkDeps": "npm run lerna exec -- --concurrency 14 -- npm outdated",
"build": "tsc --build tsconfig.build.json",
"build:clean": "tsc --build tsconfig.build.json --clean",
"watch": "tsc --build tsconfig.build.json --watch"
},
"engines": {
"node": ">=14"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jestSonar": {
"reportPath": "coverage",
"reportFile": "test-reporter.xml"
}
}