2021-07-14 02:45:47 +00:00
|
|
|
{
|
|
|
|
"name": "rss-reader",
|
|
|
|
"private": true,
|
|
|
|
"version": "1.0.0",
|
2024-02-15 18:11:50 +00:00
|
|
|
"packageManager": "yarn@4.1.0",
|
2021-07-14 02:45:47 +00:00
|
|
|
"license": "GPL-3.0",
|
|
|
|
"scripts": {
|
2024-02-15 18:33:12 +00:00
|
|
|
"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",
|
2021-07-14 02:45:47 +00:00
|
|
|
"types": "tsc --noEmit",
|
2021-07-17 03:21:12 +00:00
|
|
|
"clean": "rm -rf dist/*",
|
2024-02-15 18:33:12 +00:00
|
|
|
"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",
|
2024-02-15 18:47:05 +00:00
|
|
|
"preact": "^10.19.4",
|
2024-02-15 18:33:12 +00:00
|
|
|
"react-query": "3.39.2"
|
2021-07-14 02:45:47 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-02-15 18:20:04 +00:00
|
|
|
"@biomejs/biome": "^1.5.3",
|
2023-06-27 16:00:44 +00:00
|
|
|
"@parcel/reporter-bundle-analyzer": "^2.9.3",
|
|
|
|
"@parcel/validator-typescript": "^2.9.3",
|
2023-01-21 19:18:48 +00:00
|
|
|
"esbuild": "^0.17.3",
|
2023-01-22 03:11:33 +00:00
|
|
|
"jest": "29.3.1",
|
2023-06-27 16:00:44 +00:00
|
|
|
"netlify-cli": "^15.7.0",
|
|
|
|
"parcel": "^2.9.3",
|
2023-01-21 19:18:48 +00:00
|
|
|
"typescript": "^4.9.4"
|
2021-07-14 02:45:47 +00:00
|
|
|
},
|
2021-08-02 05:26:24 +00:00
|
|
|
"alias": {
|
|
|
|
"react": "preact/compat",
|
2023-01-21 19:18:48 +00:00
|
|
|
"react-dom": "preact/compat",
|
|
|
|
"preact/jsx-dev-runtime": "preact/jsx-runtime"
|
2022-08-01 18:19:05 +00:00
|
|
|
}
|
2021-07-14 02:45:47 +00:00
|
|
|
}
|