mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
104 lines
3.0 KiB
JSON
104 lines
3.0 KiB
JSON
{
|
|
"name": "invoke-ai-ui",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"prepare": "cd ../../ && husky install invokeai/frontend/.husky",
|
|
"dev": "vite dev",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"madge": "madge --circular src/main.tsx",
|
|
"lint": "eslint --fix .",
|
|
"lint-staged": "lint-staged",
|
|
"prettier": "prettier *.{json,js,ts,html} public/locales/*.json src/**/*.{ts,tsx,scss} --write --loglevel warn .",
|
|
"fmt": "npm run prettier -- --write",
|
|
"postinstall": "patch-package"
|
|
},
|
|
"dependencies": {
|
|
"@chakra-ui/icons": "^2.0.10",
|
|
"@chakra-ui/react": "^2.3.1",
|
|
"@emotion/cache": "^11.10.5",
|
|
"@emotion/react": "^11.10.4",
|
|
"@emotion/styled": "^11.10.4",
|
|
"@radix-ui/react-context-menu": "^2.0.1",
|
|
"@radix-ui/react-slider": "^1.1.0",
|
|
"@radix-ui/react-tooltip": "^1.0.2",
|
|
"@reduxjs/toolkit": "^1.8.5",
|
|
"@types/uuid": "^8.3.4",
|
|
"@vitejs/plugin-react-swc": "^3.1.0",
|
|
"add": "^2.0.6",
|
|
"dateformat": "^5.0.3",
|
|
"formik": "^2.2.9",
|
|
"framer-motion": "^7.2.1",
|
|
"i18next": "^22.4.5",
|
|
"i18next-browser-languagedetector": "^7.0.1",
|
|
"i18next-http-backend": "^2.1.0",
|
|
"konva": "^8.3.13",
|
|
"lodash": "^4.17.21",
|
|
"re-resizable": "^6.9.9",
|
|
"react": "^18.2.0",
|
|
"react-colorful": "^5.6.1",
|
|
"react-dom": "^18.2.0",
|
|
"react-dropzone": "^14.2.2",
|
|
"react-hotkeys-hook": "4.0.2",
|
|
"react-i18next": "^12.1.1",
|
|
"react-icons": "^4.4.0",
|
|
"react-konva": "^18.2.3",
|
|
"react-konva-utils": "^0.3.0",
|
|
"react-redux": "^8.0.2",
|
|
"react-transition-group": "^4.4.5",
|
|
"react-zoom-pan-pinch": "^2.1.3",
|
|
"redux-deep-persist": "^1.0.6",
|
|
"redux-persist": "^6.0.0",
|
|
"socket.io": "^4.5.2",
|
|
"socket.io-client": "^4.5.2",
|
|
"use-image": "^1.1.0",
|
|
"uuid": "^9.0.0",
|
|
"yarn": "^1.22.19"
|
|
},
|
|
"devDependencies": {
|
|
"@types/dateformat": "^5.0.0",
|
|
"@types/react": "^18.0.17",
|
|
"@types/react-dom": "^18.0.6",
|
|
"@types/react-transition-group": "^4.4.5",
|
|
"@typescript-eslint/eslint-plugin": "^5.36.2",
|
|
"@typescript-eslint/parser": "^5.36.2",
|
|
"babel-plugin-transform-imports": "^2.0.0",
|
|
"eslint": "^8.23.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^13.1.0",
|
|
"madge": "^5.0.1",
|
|
"patch-package": "^6.5.0",
|
|
"postinstall-postinstall": "^2.1.0",
|
|
"prettier": "^2.8.3",
|
|
"rollup-plugin-visualizer": "^5.9.0",
|
|
"sass": "^1.55.0",
|
|
"terser": "^5.16.1",
|
|
"tsc-watch": "^5.0.3",
|
|
"typescript": "^5.0.0-beta",
|
|
"vite": "^4.1.1",
|
|
"vite-plugin-eslint": "^1.8.1",
|
|
"vite-tsconfig-paths": "^4.0.5"
|
|
},
|
|
"madge": {
|
|
"detectiveOptions": {
|
|
"ts": {
|
|
"skipTypeImports": true
|
|
},
|
|
"tsx": {
|
|
"skipTypeImports": true
|
|
}
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{js,jsx,ts,tsx,cjs}": [
|
|
"npx prettier --write",
|
|
"npx eslint --fix"
|
|
]
|
|
}
|
|
}
|