rss-reader/package.json

46 lines
1.5 KiB
JSON

{
"name": "rss-reader",
"private": true,
"version": "1.0.0",
"packageManager": "yarn@4.1.1",
"license": "GPL-3.0",
"scripts": {
"lint": "yarn biome format --config-path=. . && yarn biome check --config-path=. .",
"lint:fix": "yarn biome format --config-path=. . --write && yarn biome check --config-path=. . --apply",
"typecheck": "tsc --noEmit",
"start": "netlify dev",
"start:app": "vite ./src --config ./vite.config.js --port 8080",
"build": "vite build ./src --config ./vite.config.js --emptyOutDir",
"build:watch": "vite build watch ./src --config ./vite.config.js",
"test:watch": "vitest --config ./vite.config.js",
"test": "vitest run --config ./vite.config.js"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@tanstack/react-query": "^5.20.5",
"axios": "^1.6.7",
"htmlparser2": "^9.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.11.29",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-legacy": "^5.3.0",
"jsdom": "^24.0.0",
"terser": "^5.27.1",
"typescript": "^5.3.3",
"vite": "^5.1.3",
"vitest": "^1.3.0"
}
}