forked from kiliman/remix-express-vite-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 918 Bytes
/
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
{
"name": "remix-express-dev-server",
"version": "0.4.4",
"description": "This package includes a Vite plugin to use in your Remix app. It imports the Express app you create in entry.server.tsx.",
"type": "module",
"main": "./dist/index.js",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc --project tsconfig.build.json --module esnext --outDir ./dist"
},
"author": "",
"license": "ISC",
"dependencies": {
"minimatch": "^9.0.4"
},
"devDependencies": {
"@remix-run/dev": "^2.9.1",
"esbuild": "^0.20.2",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.10"
},
"peerDependencies": {
"@remix-run/dev": "^2.8.1",
"esbuild": "^0.20.2",
"vite": "^5.2.8"
}
}