lotine/package.json
Shinwoo PARK 6c97c5927c feat: initialize react router project
initialized with `create-vite@latest --template react-ts`, replaced eslint with biome, added tailwindcss & react-router
2025-02-28 08:43:14 +00:00

31 lines
714 B
JSON

{
"name": "lotine",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "biome lint .",
"format": "biome format . --write",
"preview": "vite preview"
},
"dependencies": {
"@tailwindcss/vite": "^4.0.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.2.0",
"tailwindcss": "^4.0.9"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"globals": "^15.15.0",
"typescript": "~5.7.2",
"vite": "^6.2.0"
},
"trustedDependencies": ["@biomejs/biome"]
}