-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
62 lines (62 loc) · 1.52 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
{
"name": "uwebsockets-express",
"version": "1.3.13",
"description": "Express API compatibility layer for uWebSockets.js",
"main": "./build/index.js",
"module": "./build/index.mjs",
"types": "./build/index.d.ts",
"exports": {
".": {
"import": {
"default": "./build/index.mjs",
"types": "./build/index.d.ts"
},
"require": {
"default": "./build/index.js",
"types": "./build/index.d.ts"
}
}
},
"scripts": {
"prepublishOnly": "node build.mjs",
"test": "mocha --require tsx test/*.ts ",
"typecheck": "tsc --noEmit"
},
"author": "Endel Dreyer",
"files": [
"build",
"README.md"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/colyseus/uWebSockets-express.git"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/methods": "^1.1.1",
"@types/mime": "^2.0.3",
"@types/mocha": "^8.2.2",
"@types/path-to-regexp": "^1.7.0",
"@types/serve-index": "^1.9.0",
"axios": "^1.4.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"esbuild": "^0.23.0",
"express-session": "^1.17.2",
"fast-glob": "^3.3.2",
"mocha": "^9.0.1",
"pug": "^3.0.2",
"serve-index": "^1.9.1",
"serve-static": "^1.14.1",
"tsx": "^4.19.0",
"typescript": "^4.3.4",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.24.0"
},
"dependencies": {
"express": "^4.18.1",
"http-status-codes": "^2.1.4",
"mime": "^2.5.2",
"path-to-regexp": "^0.1.7"
}
}