mirror of
https://fast.feibisi.com/https://github.com/parcelvoy/platform.git
synced 2025-08-28 11:46:02 +08:00
* Start creating action release flow * Updates build workflow * Removes one step * Another try * Tweaks to build paths * Fixes docker ignore * Tweaks to database migration * Removes useless entrypoint * Fixes to database files * More tweaks to build * Tweaks to base URL * Allows for config file to override env * Tweak to order * Next try * Fixes comma error * Another try * Adds a health endpoint * Try Nginx proxy pass * Re-adds environment path * Remove auto build on branch * Linter fixes
68 lines
2 KiB
JSON
68 lines
2 KiB
JSON
{
|
|
"name": "ui",
|
|
"version": "0.1.0",
|
|
"dependencies": {
|
|
"@fontsource/inter": "^4.5.14",
|
|
"@headlessui/react": "^1.7.3",
|
|
"@heroicons/react": "^2.0.11",
|
|
"@monaco-editor/react": "^4.4.6",
|
|
"@popperjs/core": "^2.11.6",
|
|
"@rehookify/datepicker": "^3.2.0",
|
|
"@testing-library/jest-dom": "^5.16.4",
|
|
"@testing-library/react": "^13.3.0",
|
|
"@testing-library/user-event": "^13.5.0",
|
|
"@textea/json-viewer": "2.12.0",
|
|
"@types/jest": "^27.5.2",
|
|
"@types/node": "^16.11.41",
|
|
"@types/react": "^18.0.14",
|
|
"@types/react-dom": "^18.0.5",
|
|
"@types/uuid": "^9.0.0",
|
|
"autoprefixer": "^10.4.12",
|
|
"axios": "0.27.2",
|
|
"bootstrap-icons": "1.10.3",
|
|
"clsx": "^1.2.1",
|
|
"date-fns": "^2.29.3",
|
|
"date-fns-tz": "^1.3.7",
|
|
"http-proxy-middleware": "^2.0.6",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hook-form": "^7.33.0",
|
|
"react-popper": "^2.3.0",
|
|
"react-router-dom": "^6.4.2",
|
|
"react-scripts": "5.0.1",
|
|
"reactflow": "^11.3.3",
|
|
"uuid": "^9.0.0",
|
|
"web-vitals": "^2.1.4"
|
|
},
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject",
|
|
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
|
|
"docker:build": "docker buildx build -f ./Dockerfile -t ghcr.io/parcelvoy/ui:latest ../../",
|
|
"docker:build:push": "npm run docker:build -- --push"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
|
"eslint": "^8.28.0",
|
|
"eslint-config-standard-with-typescript": "^23.0.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-n": "^15.5.1",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"eslint-plugin-react": "^7.31.11",
|
|
"typescript": "^4.9.3"
|
|
}
|
|
}
|