2021-07-14 02:45:47 +00:00
|
|
|
{
|
|
|
|
"name": "rss-reader",
|
|
|
|
"private": true,
|
|
|
|
"version": "1.0.0",
|
2024-03-05 00:35:03 +00:00
|
|
|
"packageManager": "yarn@4.1.1",
|
2021-07-14 02:45:47 +00:00
|
|
|
"license": "GPL-3.0",
|
|
|
|
"scripts": {
|
2024-02-18 09:27:30 +00:00
|
|
|
"lint": "yarn biome format --config-path=. . && yarn biome check --config-path=. .",
|
|
|
|
"lint:fix": "yarn biome format --config-path=. . --write && yarn biome check --config-path=. . --apply",
|
2024-02-16 05:16:49 +00:00
|
|
|
"typecheck": "tsc --noEmit",
|
2024-02-15 18:33:12 +00:00
|
|
|
"start": "netlify dev",
|
2024-02-16 05:05:49 +00:00
|
|
|
"start:app": "vite ./src --config ./vite.config.js --port 8080",
|
2024-02-16 05:49:59 +00:00
|
|
|
"build": "vite build ./src --config ./vite.config.js --emptyOutDir",
|
2024-02-19 17:28:19 +00:00
|
|
|
"build:watch": "vite build watch ./src --config ./vite.config.js",
|
|
|
|
"test:watch": "vitest --config ./vite.config.js",
|
|
|
|
"test": "vitest run --config ./vite.config.js"
|
2024-02-15 18:33:12 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-02-16 04:32:39 +00:00
|
|
|
"@emotion/react": "^11.11.3",
|
2024-02-16 05:49:59 +00:00
|
|
|
"@emotion/styled": "^11.11.0",
|
2024-02-16 04:32:39 +00:00
|
|
|
"@mui/icons-material": "^5.15.10",
|
|
|
|
"@mui/material": "^5.15.10",
|
2024-02-16 05:57:14 +00:00
|
|
|
"@tanstack/react-query": "^5.20.5",
|
2024-02-18 08:44:42 +00:00
|
|
|
"axios": "^1.6.7",
|
2024-02-16 05:52:29 +00:00
|
|
|
"htmlparser2": "^9.1.0",
|
2024-02-16 04:32:39 +00:00
|
|
|
"react": "^18.2.0",
|
2024-02-16 05:57:14 +00:00
|
|
|
"react-dom": "^18.2.0"
|
2021-07-14 02:45:47 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-02-15 18:20:04 +00:00
|
|
|
"@biomejs/biome": "^1.5.3",
|
2024-02-19 17:28:19 +00:00
|
|
|
"@testing-library/dom": "^9.3.4",
|
|
|
|
"@testing-library/jest-dom": "^6.4.2",
|
|
|
|
"@testing-library/react": "^14.2.1",
|
|
|
|
"@testing-library/user-event": "^14.5.2",
|
2024-03-19 03:07:06 +00:00
|
|
|
"@types/node": "^20.11.29",
|
2024-02-16 04:32:39 +00:00
|
|
|
"@types/react": "^18",
|
|
|
|
"@types/react-dom": "^18",
|
2024-02-16 05:05:49 +00:00
|
|
|
"@vitejs/plugin-basic-ssl": "^1.1.0",
|
|
|
|
"@vitejs/plugin-legacy": "^5.3.0",
|
2024-02-19 17:28:19 +00:00
|
|
|
"jsdom": "^24.0.0",
|
2024-02-16 05:05:49 +00:00
|
|
|
"terser": "^5.27.1",
|
2024-02-16 05:09:03 +00:00
|
|
|
"typescript": "^5.3.3",
|
2024-02-19 17:28:19 +00:00
|
|
|
"vite": "^5.1.3",
|
|
|
|
"vitest": "^1.3.0"
|
2022-08-01 18:19:05 +00:00
|
|
|
}
|
2021-07-14 02:45:47 +00:00
|
|
|
}
|