Files
thoth/frontend/package.json
Dylan Knutson ef95ac65f7
Some checks failed
CI / Check Style (push) Successful in 24s
CI / Run Clippy (push) Successful in 51s
CI / Run Tests (push) Failing after 1m35s
Initialize loco app
2024-12-01 11:55:08 -08:00

25 lines
501 B
JSON

{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "rsbuild dev --open",
"build": "rsbuild build",
"lint": "biome check src/",
"preview": "rsbuild preview"
},
"dependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@biomejs/biome": "^1",
"@rsbuild/core": "^1",
"@rsbuild/plugin-react": "^1",
"@types/react": "^18",
"@types/react-dom": "^18",
"typescript": "^5"
}
}