-
-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
package.json
148 lines (148 loc) · 3.55 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "@react-router/dev",
"version": "7.0.1",
"description": "Dev tools and CLI for React Router",
"homepage": "https://reactrouter.com",
"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-dev"
},
"license": "MIT",
"exports": {
"./config": {
"types": "./dist/config.d.ts",
"default": "./dist/config.js"
},
"./routes": {
"types": "./dist/routes.d.ts",
"default": "./dist/routes.js"
},
"./vite": {
"types": "./dist/vite.d.ts",
"default": "./dist/vite.js"
},
"./vite/cloudflare": {
"types": "./dist/vite/cloudflare.d.ts",
"default": "./dist/vite/cloudflare.js"
},
"./package.json": "./package.json"
},
"bin": {
"react-router": "bin.js"
},
"scripts": {
"build": "wireit",
"typecheck": "tsc"
},
"wireit": {
"build": {
"command": "tsup",
"files": [
"cli/**",
"config/**",
"typegen/**",
"vite/**",
"*.ts",
"bin.js",
"tsconfig.json",
"package.json"
],
"output": [
"dist/**"
]
}
},
"dependencies": {
"@babel/core": "^7.21.8",
"@babel/generator": "^7.21.5",
"@babel/parser": "^7.21.8",
"@babel/plugin-syntax-decorators": "^7.22.10",
"@babel/plugin-syntax-jsx": "^7.21.4",
"@babel/preset-typescript": "^7.21.5",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.22.5",
"@npmcli/package-json": "^4.0.1",
"@react-router/node": "workspace:*",
"arg": "^5.0.1",
"babel-dead-code-elimination": "^1.0.6",
"chokidar": "^4.0.0",
"dedent": "^1.5.3",
"es-module-lexer": "^1.3.1",
"exit-hook": "2.2.1",
"fs-extra": "^10.0.0",
"gunzip-maybe": "^1.4.2",
"jsesc": "3.0.2",
"lodash": "^4.17.21",
"pathe": "^1.1.2",
"picocolors": "^1.1.1",
"picomatch": "^2.3.1",
"prettier": "^2.7.1",
"react-refresh": "^0.14.0",
"semver": "^7.3.7",
"set-cookie-parser": "^2.6.0",
"valibot": "^0.41.0",
"vite-node": "^1.6.0"
},
"devDependencies": {
"@react-router/serve": "workspace:*",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.5",
"@types/dedent": "^0.7.0",
"@types/express": "^4.17.9",
"@types/fs-extra": "^8.1.2",
"@types/gunzip-maybe": "^1.4.0",
"@types/jsesc": "^3.0.1",
"@types/lodash": "^4.14.182",
"@types/node": "^18.17.1",
"@types/npmcli__package-json": "^4.0.0",
"@types/picomatch": "^2.3.0",
"@types/prettier": "^2.7.3",
"@types/set-cookie-parser": "^2.4.1",
"dotenv": "^16.0.0",
"esbuild-register": "^3.3.2",
"execa": "5.1.1",
"express": "^4.19.2",
"fast-glob": "3.2.11",
"react-router": "workspace:^",
"strip-ansi": "^6.0.1",
"tiny-invariant": "^1.2.0",
"tsup": "^8.3.0",
"typescript": "^5.1.6",
"vite": "^5.1.0",
"wireit": "0.14.9",
"wrangler": "^3.28.2"
},
"peerDependencies": {
"@react-router/serve": "workspace:^",
"react-router": "workspace:^",
"typescript": "^5.1.0",
"vite": "^5.1.0",
"wrangler": "^3.28.2"
},
"peerDependenciesMeta": {
"@react-router/serve": {
"optional": true
},
"typescript": {
"optional": true
},
"wrangler": {
"optional": true
}
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"bin.js",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
]
}