Skip to content

Commit

Permalink
Move cross-env to dev dependencies since we can run prod without it
Browse files Browse the repository at this point in the history
  • Loading branch information
yutotakano committed Dec 2, 2024
1 parent 4f65d4b commit 880f034
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
"isbot": "4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"cross-env": "^7.0.3"
"react-icons": "^5.3.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
Expand All @@ -30,15 +29,16 @@
"tailwindcss": "^3.4.15",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.1"
"vite": "^6.0.1",
"cross-env": "^7.0.3"
},
"resolutions": {
"globals": "14.0.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development remix vite:dev",
"build": "cross-env NODE_ENV=production remix vite:build",
"serve": "cross-env NODE_ENV=production remix-serve build/server/index.js",
"serve": "remix-serve build/server/index.js",
"lint": "eslint"
}
}

0 comments on commit 880f034

Please sign in to comment.