forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.4 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
{
"name": "@react-router/serve",
"version": "7.0.2",
"description": "Production application server for React Router",
"bugs": {
"url": "https://github.com/remix-run/react-router/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/remix-run/react-router",
"directory": "packages/react-router-serve"
},
"license": "MIT",
"exports": {
"./package.json": "./package.json"
},
"bin": {
"react-router-serve": "bin.js"
},
"scripts": {
"build": "wireit"
},
"wireit": {
"build": {
"command": "tsup",
"files": [
"*.ts",
"bin.js",
"tsconfig.json",
"package.json"
],
"output": [
"dist/**"
]
}
},
"dependencies": {
"@react-router/express": "workspace:*",
"@react-router/node": "workspace:*",
"compression": "^1.7.4",
"express": "^4.19.2",
"get-port": "5.1.1",
"morgan": "^1.10.0",
"source-map-support": "^0.5.21"
},
"peerDependencies": {
"react-router": "workspace:*"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/express": "^4.17.9",
"@types/morgan": "^1.9.2",
"@types/source-map-support": "^0.5.6",
"tsup": "^8.3.0",
"typescript": "^5.1.6",
"wireit": "0.14.9"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"bin.js",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
]
}