Skip to content

Commit

Permalink
move devDependencies after dependencies
Browse files Browse the repository at this point in the history
Just for consistency
  • Loading branch information
RobinMalfait committed Mar 13, 2024
1 parent 4c68199 commit 48ec021
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions playgrounds/vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@
"dev": "bun --bun vite ./src --config ./vite.config.ts",
"build": "bun --bun vite build ./src --outDir ../dist --config ./vite.config.ts --emptyOutDir"
},
"devDependencies": {
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"bun": "^1.0.26",
"vite": "^5.0.11",
"vite-plugin-handlebars": "^2.0.0"
},
"dependencies": {
"@tailwindcss/vite": "workspace:^",
"tailwindcss": "workspace:^",
"@vitejs/plugin-react": "^4.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"bun": "^1.0.26",
"vite": "^5.0.11",
"vite-plugin-handlebars": "^2.0.0"
}
}

0 comments on commit 48ec021

Please sign in to comment.