woj-ui-2/package.json

75 lines
2.5 KiB
JSON

{
"name": "vite-template-redux",
"private": true,
"version": "1.3.1-dev",
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:fix": "eslint --cache --cache-location ./node_modules/.cache/eslint --fix .",
"type-check": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@dicebear/collection": "^7.1.1",
"@dicebear/core": "^7.1.1",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@reduxjs/toolkit": "^2.2.1",
"@sentry/react": "^7.107.0",
"@sentry/vite-plugin": "^2.15.0",
"@tanstack/react-table": "^8.13.2",
"ace-builds": "^1.32.7",
"framer-motion": "^11.0.14",
"github-markdown-css": "^5.5.1",
"prism-react-renderer": "^2.3.1",
"react": "^18.2.0",
"react-ace": "^10.1.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-markdown": "^9.0.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"rehype-mathjax": "^6.0.0",
"rehype-raw": "^7.0.0",
"remark-emoji": "^4.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"universal-cookie": "^7.1.0"
},
"devDependencies": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.2",
"postcss-load-config": "^5.0.3",
"prettier": "^3.2.5",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-tsconfig-paths": "^4.3.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --cache --cache-location ./node_modules/.cache/eslint --fix"
]
}
}