Robin Malfait d223112162
Bump dependencies (#14160)
This PR bumps dependencies

We also make some dependencies `catalog:` dependencies, which allows us
to keep
the version in sync. E.g.: `lightningcss` and `@types/node`.

Bumped `turbo` to the latest version + enabled the new UI

Fixed a bug in the tests now that `lightningcss` outputs the correct
value.
2024-08-09 16:12:24 +02:00

26 lines
687 B
JSON

{
"name": "vite-playground",
"private": true,
"type": "module",
"scripts": {
"lint": "tsc --noEmit",
"dev": "bun --bun vite ./src --config ./vite.config.ts",
"build": "bun --bun vite build ./src --outDir ../dist --config ./vite.config.ts --emptyOutDir",
"preview": "bun --bun vite preview"
},
"dependencies": {
"@tailwindcss/vite": "workspace:^",
"@vitejs/plugin-react": "^4.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "workspace:^"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"bun": "^1.1.22",
"vite": "catalog:",
"vite-plugin-handlebars": "^2.0.0"
}
}