-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.81 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
{
"name": "bautajs",
"repository": {
"type": "git",
"url": "git+https://github.com/axa-group/bauta.js.git"
},
"keywords": [
"middleware",
"express",
"fastify",
"agent",
"proxy",
"multipart"
],
"workspaces": [
"packages/*"
],
"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",
"engines": {
"node": ">=18"
},
"scripts": {
"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\"",
"clean": "turbo run clean && rm -rf node_modules",
"lint": "eslint \"*/**/*.{ts,js}\"",
"test": "turbo run test",
"release": "lerna changed && lerna publish --no-changelog --yes --no-commit-hooks",
"checkDeps": "npx npm-check-updates -u && npm run lerna exec -- npx npm-check-updates -u",
"build": "turbo run build",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-pino-logger": "^4.0.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/pino": "^7.0.5",
"@types/split2": "^3.2.1",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "4.1.6",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"fast-safe-stringify": "^2.1.1",
"form-data": "^4.0.0",
"got": "^11.8.5",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-config": "^29.5.0",
"jest-extended": "^3.2.4",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"lerna": "^6.6.1",
"nock": "^13.3.0",
"node-mocks-http": "^1.12.2",
"node-object-hash": "^2.3.10",
"pino": "^8.11.0",
"prettier": "^2.8.7",
"split2": "^4.2.0",
"stream-mock": "^2.0.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"turbo": "^1.9.3",
"typescript": "~5.2.0"
},
"jestSonar": {
"reportPath": "coverage",
"reportFile": "test-reporter.xml"
},
"packageManager": "[email protected]"
}