rss-reader/package.json

47 lines
1.5 KiB
JSON
Raw Permalink Normal View History

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": {
"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",
"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",
"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": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@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",
"react": "^18.2.0",
"react-dom": "^18.2.0"
2021-07-14 02:45:47 +00:00
},
"devDependencies": {
"@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",
"@types/node": "^20.11.29",
"@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"
}
2021-07-14 02:45:47 +00:00
}