-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "express-bff",
"version": "1.1.0",
"description": "",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaulMaly/express-bff.git"
},
"keywords": [
"express",
"express middleware",
"bff",
"backend for frontend"
],
"author": "PaulMaly",
"license": "MIT",
"bugs": {
"url": "https://github.com/PaulMaly/express-bff/issues"
},
"homepage": "https://github.com/PaulMaly/express-bff#readme",
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"express-file-routing": "^2.1.2",
"express-http-proxy": "^1.6.3",
"express-session": "^1.17.3",
"helmet": "^6.0.1",
"method-override": "^3.0.0",
"node-express-req-id": "^1.0.1",
"session-file-store": "^1.5.0",
"sirv": "^2.0.2",
"ssl-express-www": "^3.2.1"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/node": "^18.14.1"
},
"peerDependencies": {
"express": "4.x.x"
}
}