feat: path-based routing (#7275)
Showing
... | @@ -21,7 +21,7 @@ | ... | @@ -21,7 +21,7 @@ |
"start:cloud": "NODE_OPTIONS=--dns-result-order=ipv4first PORT=3001 npx wrangler pages dev --compatibility-flags=nodejs_compat --compatibility-date=2023-08-01 --proxy=3001 --port=3000 -- yarn start", | "start:cloud": "NODE_OPTIONS=--dns-result-order=ipv4first PORT=3001 npx wrangler pages dev --compatibility-flags=nodejs_compat --compatibility-date=2023-08-01 --proxy=3001 --port=3000 -- yarn start", | ||
"build": "craco build", | "build": "craco build", | ||
"analyze": "source-map-explorer 'build/static/js/*.js' --only-mapped", | "analyze": "source-map-explorer 'build/static/js/*.js' --only-mapped", | ||
"serve": "serve build -l 3000", | "serve": "serve build -s -l 3000", | ||
"lint": "yarn eslint --ignore-path .gitignore --cache --cache-location node_modules/.cache/eslint/ .", | "lint": "yarn eslint --ignore-path .gitignore --cache --cache-location node_modules/.cache/eslint/ .", | ||
"typecheck": "tsc", | "typecheck": "tsc", | ||
"typecheck:cloud": "tsc -p functions/tsconfig.json", | "typecheck:cloud": "tsc -p functions/tsconfig.json", | ||
... | @@ -105,7 +105,6 @@ | ... | @@ -105,7 +105,6 @@ |
"@types/react": "^18.0.15", | "@types/react": "^18.0.15", | ||
"@types/react-dom": "^18.0.6", | "@types/react-dom": "^18.0.6", | ||
"@types/react-redux": "^7.1.24", | "@types/react-redux": "^7.1.24", | ||
"@types/react-router-dom": "^5.3.3", | |||
"@types/react-table": "^7.7.12", | "@types/react-table": "^7.7.12", | ||
"@types/react-virtualized-auto-sizer": "^1.0.0", | "@types/react-virtualized-auto-sizer": "^1.0.0", | ||
"@types/react-window": "^1.8.2", | "@types/react-window": "^1.8.2", | ||
... | ... |
Please register or sign in to comment