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",
|
2023-06-27 17:54:34 +00:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
],
|
2021-07-14 02:45:47 +00:00
|
|
|
"scripts": {
|
2023-06-27 17:54:34 +00:00
|
|
|
"start:app": "yarn workspace app start",
|
|
|
|
"start:api": "yarn workspace api start",
|
2023-07-01 04:26:28 +00:00
|
|
|
"lint": "yarn rome format packages/**/src/*.ts && yarn rome check packages/**/src/*.ts",
|
|
|
|
"lint:fix": "yarn rome format packages/**/src/*.ts --write && yarn rome check packages/**/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/*",
|
2023-06-27 17:54:34 +00:00
|
|
|
"build:app": "yarn workspace app build",
|
|
|
|
"build:app:watch": "yarn workspace app watch",
|
|
|
|
"build:app:bundlesize": "yarn workspace app build:bundlesize",
|
|
|
|
"build:api": "yarn workspace api build"
|
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",
|
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",
|
2022-08-01 19:47:56 +00:00
|
|
|
"prettier": "2.7.1",
|
2023-07-01 04:26:28 +00:00
|
|
|
"rome": "^12.1.3",
|
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
|
|
|
}
|