- Updated branding from "SolaceScanScout" to "Solace" across various files including deployment scripts, API responses, and documentation. - Changed default base URL for Playwright tests and updated security headers to reflect the new branding. - Enhanced README and API documentation to include new authentication endpoints and product access details. This refactor aligns the project branding and improves clarity in the API documentation.
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"name": "explorer-frontend",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"packageManager": "pnpm@10.0.0",
|
|
"scripts": {
|
|
"dev": "sh -c 'HOST=${HOST:-127.0.0.1}; PORT=${PORT:-3000}; next dev -H \"$HOST\" -p \"$PORT\"'",
|
|
"build": "next build",
|
|
"build:check": "npm run lint && npm run type-check && npm run build",
|
|
"smoke:routes": "node ./scripts/smoke-routes.mjs",
|
|
"start": "PORT=${PORT:-3000} node ./scripts/start-standalone.mjs",
|
|
"start:next": "next start",
|
|
"lint": "next lint",
|
|
"type-check": "tsc --noEmit -p tsconfig.check.json",
|
|
"test": "npm run lint && npm run type-check",
|
|
"test:unit": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@tanstack/react-query": "^5.14.2",
|
|
"autoprefixer": "^10.4.16",
|
|
"axios": "^1.6.2",
|
|
"clsx": "^2.0.0",
|
|
"date-fns": "^3.0.6",
|
|
"js-sha3": "^0.9.3",
|
|
"next": "^14.0.4",
|
|
"postcss": "^8.4.32",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"tailwindcss": "^3.3.6",
|
|
"zustand": "^4.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.5",
|
|
"@types/react": "^18.2.45",
|
|
"@types/react-dom": "^18.2.18",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-next": "^14.0.4",
|
|
"typescript": "^5.3.3",
|
|
"vitest": "^1.6.1"
|
|
}
|
|
}
|