-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.07 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.07 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "ultimate-express",
"version": "2.1.0",
"description": "The Ultimate Express. Fastest http server with full Express compatibility, based on uWebSockets.",
"main": "src/index.js",
"scripts": {
"test": "node tests/index.js",
"test:types": "tsd --files tests/types/*.test-d.ts",
"benchmark:compare": "node benchmark/run.js",
"cover": "npm run cover:unit && npm run cover:report",
"cover:unit": "nyc --silent npm run test",
"cover:report": "nyc report --reporter=html"
},
"engines": {
"node": ">=20"
},
"files": [
"src",
"EXPRESS_LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dimdenGD/ultimate-express.git"
},
"keywords": [
"express",
"http",
"fast",
"server",
"http server",
"https",
"https server",
"ws",
"websocket",
"websockets",
"uwebsockets",
"uws"
],
"types": "src/types.d.ts",
"author": "dimden.dev",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dimdenGD/ultimate-express/issues"
},
"homepage": "https://github.com/dimdenGD/ultimate-express#readme",
"dependencies": {
"@types/express": "^4.17.25",
"accepts": "^1.3.8",
"acorn": "^8.16.0",
"bytes": "^3.1.2",
"content-disposition": "^1.1.0",
"cookie": "^1.1.1",
"cookie-signature": "^1.2.2",
"encodeurl": "^2.0.0",
"etag": "^1.8.1",
"fast-querystring": "^1.1.2",
"fast-zlib": "^2.0.1",
"fresh": "^0.5.2",
"mime-types": "^2.1.35",
"ms": "^2.1.3",
"proxy-addr": "^2.0.7",
"qs": "^6.15.1",
"range-parser": "^1.2.1",
"statuses": "^2.0.2",
"tseep": "^1.3.1",
"type-is": "^2.0.1",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.67.0",
"vary": "^1.1.2"
},
"devDependencies": {
"@codechecks/client": "^0.1.12",
"@types/node": "^25.6.0",
"better-sse": "^0.16.1",
"body-parser": "^2.2.2",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cookie-session": "^2.1.1",
"cors": "^2.8.6",
"ejs": "^3.1.10",
"errorhandler": "^1.5.2",
"eventsource": "^4.1.0",
"exit-hook": "^2.2.1",
"express": "latest-4",
"express-art-template": "^1.0.1",
"express-async-errors": "^3.1.1",
"express-dot-engine": "^1.0.8",
"express-fileupload": "^1.5.2",
"express-handlebars": "^8.0.7",
"express-http-proxy": "^2.1.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^8.4.0",
"express-session": "^1.19.0",
"express-subdomain": "^1.0.6",
"graphql-http": "^1.22.4",
"helmet": "^8.1.0",
"http-proxy-middleware": "^3.0.5",
"method-override": "^3.0.0",
"morgan": "^1.10.1",
"multer": "^2.1.1",
"mustache-express": "^1.3.2",
"nyc": "^17.1.0",
"pako": "^2.1.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pkg-pr-new": "^0.0.66",
"pug": "^3.0.4",
"response-time": "^2.3.4",
"serve-index": "^1.9.2",
"serve-static": "^2.2.1",
"supertest": "^7.2.2",
"swagger-ui-express": "^5.0.1",
"swig": "^1.4.2",
"tsd": "^0.33.0",
"vhost": "^3.0.2"
}
}