rss-reader/package.json

40 lines
1.2 KiB
JSON

{
"name": "rss-reader",
"private": true,
"version": "1.0.0",
"packageManager": "yarn@4.1.0",
"license": "GPL-3.0",
"scripts": {
"lint": "yarn biome format src/*.ts && yarn biome check src/*.ts",
"lint:fix": "yarn biome format src/*.ts --write && yarn biome check src/*.ts --apply",
"types": "tsc --noEmit",
"clean": "rm -rf dist/*",
"start": "netlify dev",
"start:parcel": "parcel serve src/index.html",
"build": "parcel build src/index.html",
"build:watch": "parcel watch src/index.html",
"build:bundlesize": "parcel build src/index.html --reporter @parcel/reporter-bundle-analyzer"
},
"dependencies": {
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"htmlparser2": "8.0.1",
"preact": "^10.19.4",
"react-query": "3.39.2"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@parcel/reporter-bundle-analyzer": "^2.9.3",
"@parcel/validator-typescript": "^2.9.3",
"esbuild": "^0.17.3",
"jest": "29.3.1",
"netlify-cli": "^15.7.0",
"parcel": "^2.9.3",
"typescript": "^4.9.4"
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat",
"preact/jsx-dev-runtime": "preact/jsx-runtime"
}
}