tanstack-router-quickstart/package.json

45 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2023-06-07 23:56:13 +10:00
{
2023-10-16 14:46:31 +11:00
"name": "catsearch",
2023-06-07 23:56:13 +10:00
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
2024-05-04 20:19:51 +10:00
"dev": "tsr watch & vite",
2023-06-07 23:56:13 +10:00
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
2023-06-08 00:05:03 +10:00
"preview": "vite preview",
"prettier": "prettier \"src/**/*.{js,jsx,ts,tsx,css,scss,md}\" --write",
"format:check": "yarn prettier -- --check",
"format:write": "yarn prettier -- --write",
"types:check": "tsc --noEmit --pretty",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx src --fix --no-error-on-unmatched-pattern",
"fix": "yarn format:write && yarn lint:fix"
2023-06-07 23:56:13 +10:00
},
"dependencies": {
2023-10-16 15:23:49 +11:00
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.13",
2023-10-16 14:46:31 +11:00
"@reduxjs/toolkit": "^1.9.7",
"@tanstack/react-router": "^1.31.17",
"@tanstack/router-cli": "^1.30.0",
"@tanstack/router-devtools": "^1.31.17",
"@tanstack/router-vite-plugin": "^1.30.0",
2023-06-07 23:56:13 +10:00
"react": "^18.2.0",
2023-10-16 14:46:31 +11:00
"react-dom": "^18.2.0",
"react-redux": "^8.1.3"
2023-06-07 23:56:13 +10:00
},
"devDependencies": {
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
2023-06-07 23:56:13 +10:00
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.0",
2023-07-05 23:37:20 +10:00
"prettier": "^3.0.0",
2023-06-07 23:56:13 +10:00
"typescript": "^5.0.2",
"vite": "^4.3.9"
}
}