-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"name": "@axa/bautajs-express",
"version": "4.0.0-beta.0",
"description": "A bautaJS Express.js plugin. Allow auto exposing the bautaJS operations.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"tsc": "tsc",
"build": "tsc --build",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/axa-group/bauta.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"bautajs",
"express",
"middleware"
],
"license": "SEE LICENSE IN LICENSE.txt",
"engines": {
"node": ">=24",
"npm": ">=8"
},
"dependencies": {
"@axa/bautajs-core": "^4.0.0-beta.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-pino-logger": "^7.0.0",
"helmet": "^6.0.1",
"openapi-types": "^12.1.0",
"pino": "^8.11.0",
"swagger-ui-express": "^4.6.2"
},
"devDependencies": {
"@axa/bautajs-dev-config": "^4.0.0-beta.0"
}
}