rss-reader/package.json

41 lines
1.2 KiB
JSON
Raw Normal View History

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",
"workspaces": [
"packages/*"
],
2021-07-14 02:45:47 +00:00
"scripts": {
"start:app": "yarn workspace app start",
"start:api": "yarn workspace api start",
"lint": "yarn biome format packages/**/src/*.ts && yarn biome check packages/**/src/*.ts",
"lint:fix": "yarn biome format packages/**/src/*.ts --write && yarn biome 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/*",
"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": {
"@biomejs/biome": "^1.5.3",
"@parcel/reporter-bundle-analyzer": "^2.9.3",
"@parcel/validator-typescript": "^2.9.3",
"esbuild": "^0.17.3",
"jest": "29.3.1",
"netlify-cli": "^15.7.0",
"parcel": "^2.9.3",
"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
}