rss-reader/package.json

56 lines
1.6 KiB
JSON
Raw Normal View History

2021-07-14 02:45:47 +00:00
{
"name": "rss-reader",
"private": true,
"version": "1.0.0",
"packageManager": "yarn@3.2.2",
2021-07-14 02:45:47 +00:00
"license": "GPL-3.0",
"scripts": {
"start": "netlify dev",
"start:parcel": "parcel serve src/index.html",
2021-07-14 02:45:47 +00:00
"lint": "eslint src",
"lint:fix": "eslint src netlify --fix",
2021-07-14 02:45:47 +00:00
"types": "tsc --noEmit",
2021-07-17 03:21:12 +00:00
"clean": "rm -rf dist/*",
2021-07-14 02:45:47 +00:00
"build": "parcel build src/index.html",
"build:watch": "parcel watch src/index.html",
2021-07-14 02:45:47 +00:00
"build:bundlesize": "parcel build src/index.html --reporter @parcel/reporter-bundle-analyzer"
},
"devDependencies": {
2021-10-16 03:17:31 +00:00
"@parcel/reporter-bundle-analyzer": "^2.0.0",
"@parcel/validator-typescript": "^2.0.0",
"@tophat/eslint-config": "0.12.0",
2021-07-14 02:45:47 +00:00
"@tophat/eslint-import-resolver-require": "^0.1.3",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
2021-07-14 02:45:47 +00:00
"eslint": "^7.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-node": "0.3.6",
"eslint-import-resolver-typescript": "3.4.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.7.0",
2021-07-14 02:45:47 +00:00
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "4.2.1",
2021-07-14 02:45:47 +00:00
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "28.1.3",
"netlify-cli": "^5.2.3",
2021-10-16 03:17:31 +00:00
"parcel": "^2.0.0",
"prettier": "2.7.1",
"typescript": "4.7.4"
2021-07-14 02:45:47 +00:00
},
"dependencies": {
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"htmlparser2": "8.0.1",
"preact": "10.10.0",
"react-query": "3.39.2"
},
2022-04-03 15:19:58 +00:00
"resolutions": {
"minimist": "^1.2.6"
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
}
2021-07-14 02:45:47 +00:00
}