rss-reader/package.json

53 lines
1.5 KiB
JSON
Raw Normal View History

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": {
"@parcel/reporter-bundle-analyzer": "^2.9.3",
"@parcel/validator-typescript": "^2.9.3",
"@tophat/eslint-config": "3.3.0",
"@tophat/eslint-import-resolver-require": "0.1.3",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"esbuild": "^0.17.3",
"eslint": "8.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-node": "0.3.6",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.3.1",
"netlify-cli": "^15.7.0",
"parcel": "^2.9.3",
"prettier": "2.7.1",
"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"
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat",
"preact/jsx-dev-runtime": "preact/jsx-runtime"
}
2021-07-14 02:45:47 +00:00
}