-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.62 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
{
"name": "remix-hono-vite",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "vite --host",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "NODE_ENV=production SESSION_SECRET=s3cr3t node ./build/server/index.js",
"start:docker": "run-s docker:*",
"docker:build": "docker build -t remix-hono-vite .",
"docker:run": "docker run --rm -d -p 8080:8080 --env-file .env remix-hono-vite",
"typecheck": "tsc"
},
"dependencies": {
"@hono/node-server": "^1.8.2",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"hono": "^4.1.3",
"isbot": "^5.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-hono": "^0.0.16"
},
"devDependencies": {
"@hono/vite-dev-server": "^0.10.0",
"@remix-run/dev": "^2.8.1",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"autoprefixer": "^10.4.18",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.4.1",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-tsconfig-paths": "^4.3.1"
},
"engines": {
"node": ">=20.0.0"
},
"prettier": {}
}