-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
78 lines (78 loc) · 1.62 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
{
"name": "next-http-proxy-middleware",
"version": "1.2.6",
"description": "Nextjs HTTP Proxy Middleware",
"main": "build/index.js",
"scripts": {
"test": "jest",
"build": "rollup -c ./rollup.config.js",
"publish": "npm run build && npm publish"
},
"contributors": [
"Yongwoo Jung<[email protected]>",
"Denny Lim<[email protected]>",
"Kristian Tryggestad",
"Gunnlaugur Thor Briem",
"Otto von Wesendonk",
"Daniel Silva",
"Yann Pringault",
"Lorenzo",
"Timon Grassl",
"Abhinav Kumar",
"Jack Cuthbert",
"Vytenis",
"Dario Varotto",
"johannbrynjar"
],
"dependencies": {
"@types/http-proxy": "1.17.3",
"http-proxy": "^1.18.1"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"typescript": "^3.8.2",
"jest": "^29.7.0",
"next": "^14.1.1",
"rollup": "^2.38.0",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^26.4.4"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
}
},
"license": "MIT",
"bugs": {
"url": "https://github.com/stegano/next-http-proxy-middleware/issues"
},
"keywords": [
"reverse",
"proxy",
"middleware",
"http",
"https",
"connect",
"express",
"websocket",
"ws",
"cors",
"next",
"next.js"
],
"homepage": "https://github.com/stegano/next-http-proxy-middleware#readme",
"engines": {
"node": ">=10.0.0"
}
}