forked from kiliman/remix-express-vite-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
{
"name": "remix-create-express-app",
"version": "0.4.5",
"description": "This package includes helper function to create an Express app in your entry.server.tsx file. It allows you to customize your server. It also adds support for Middleware to Remix",
"type": "module",
"main": "./dist/index.js",
"sideEffects": false,
"exports": {
".": "./dist/index.js",
"./context": "./dist/context.js",
"./middleware": "./dist/middleware.js",
"./remix": "./dist/remix.js",
"./routes": "./dist/routes.js",
"./package.json": "./package.json"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && esbuild src/* --format=esm --platform=node --outdir=dist/ && npm run build:types",
"build:types": "tsc --project tsconfig.build.json --module esnext --outDir ./dist"
},
"author": "",
"license": "ISC",
"dependencies": {
"@remix-run/express": "^2.9.1",
"@remix-run/node": "^2.9.1",
"@remix-run/react": "^2.9.1",
"compression": "^1.7.4",
"express": "^4.19.2",
"morgan": "^1.10.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/source-map-support": "^0.5.10",
"all-contributors-cli": "^6.26.1",
"esbuild": "^0.20.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.4.5",
"vite": "^5.2.10"
}
}