2021-07-14 02:45:47 +00:00
|
|
|
{
|
|
|
|
"name": "rss-reader",
|
|
|
|
"private": true,
|
|
|
|
"version": "1.0.0",
|
2023-01-21 18:29:22 +00:00
|
|
|
"packageManager": "yarn@3.3.1",
|
2021-07-14 02:45:47 +00:00
|
|
|
"license": "GPL-3.0",
|
2023-06-27 16:27:39 +00:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
],
|
2021-07-14 02:45:47 +00:00
|
|
|
"scripts": {
|
2023-06-27 16:50:41 +00:00
|
|
|
"start:app": "yarn workspace app start",
|
|
|
|
"lint": "eslint packages",
|
|
|
|
"lint:fix": "eslint packages 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/*",
|
2023-06-27 16:50:41 +00:00
|
|
|
"build:app": "yarn workspace app build",
|
|
|
|
"build:app:watch": "yarn workspace app watch",
|
|
|
|
"build:app:bundlesize": "yarn workspace app build:bundlesize"
|
2021-07-14 02:45:47 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-06-27 16:00:44 +00:00
|
|
|
"@parcel/reporter-bundle-analyzer": "^2.9.3",
|
|
|
|
"@parcel/validator-typescript": "^2.9.3",
|
2022-09-03 19:21:59 +00:00
|
|
|
"@tophat/eslint-config": "3.3.0",
|
2022-09-04 17:31:23 +00:00
|
|
|
"@tophat/eslint-import-resolver-require": "0.1.3",
|
2023-01-22 03:12:06 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.48.2",
|
|
|
|
"@typescript-eslint/parser": "5.48.2",
|
2023-01-21 19:18:48 +00:00
|
|
|
"esbuild": "^0.17.3",
|
2023-01-22 03:11:24 +00:00
|
|
|
"eslint": "8.32.0",
|
2022-08-01 19:14:39 +00:00
|
|
|
"eslint-config-prettier": "8.5.0",
|
2022-08-01 18:46:33 +00:00
|
|
|
"eslint-import-resolver-node": "0.3.6",
|
2022-11-06 00:00:17 +00:00
|
|
|
"eslint-import-resolver-typescript": "3.5.2",
|
2022-08-01 20:05:14 +00:00
|
|
|
"eslint-plugin-import": "2.26.0",
|
2023-01-22 03:11:45 +00:00
|
|
|
"eslint-plugin-jest": "27.2.1",
|
2022-08-01 20:11:19 +00:00
|
|
|
"eslint-plugin-jsx-a11y": "6.6.1",
|
2022-08-01 19:39:35 +00:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
2022-11-05 18:29:51 +00:00
|
|
|
"eslint-plugin-react": "7.31.10",
|
2022-08-01 20:10:59 +00:00
|
|
|
"eslint-plugin-react-hooks": "4.6.0",
|
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",
|
2022-08-01 19:47:56 +00:00
|
|
|
"prettier": "2.7.1",
|
2023-01-21 19:18:48 +00:00
|
|
|
"typescript": "^4.9.4"
|
2021-07-14 02:45:47 +00:00
|
|
|
},
|
2022-04-03 15:19:58 +00:00
|
|
|
"resolutions": {
|
|
|
|
"minimist": "^1.2.6"
|
|
|
|
},
|
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
|
|
|
}
|