woj-ui-2/package.json

76 lines
2.5 KiB
JSON
Raw Normal View History

2024-02-20 17:03:05 +08:00
{
"name": "vite-template-redux",
"private": true,
"version": "1.3.1-dev",
2024-02-20 17:03:05 +08:00
"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": {
2024-02-21 22:11:28 +08:00
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
2024-04-27 23:51:12 +08:00
"@dicebear/collection": "^7.1.2",
"@dicebear/core": "^7.1.2",
2024-03-15 13:50:07 +08:00
"@emotion/react": "^11.11.4",
2024-04-27 23:51:12 +08:00
"@emotion/styled": "^11.11.5",
"@reduxjs/toolkit": "^2.2.3",
"@sentry/react": "^7.112.2",
"@sentry/vite-plugin": "^2.16.1",
"@tanstack/react-table": "^8.16.0",
"ace-builds": "^1.33.1",
"framer-motion": "^11.1.7",
2024-03-15 16:00:17 +08:00
"github-markdown-css": "^5.5.1",
"prism-react-renderer": "^2.3.1",
2024-04-27 23:51:12 +08:00
"react": "^18.3.1",
2024-03-15 16:12:22 +08:00
"react-ace": "^10.1.0",
2024-04-27 23:51:12 +08:00
"react-dom": "^18.3.1",
"react-icons": "^5.1.0",
2024-03-15 16:00:17 +08:00
"react-markdown": "^9.0.1",
2024-04-27 23:51:12 +08:00
"react-redux": "^9.1.1",
"react-router-dom": "^6.23.0",
2024-03-18 14:46:06 +08:00
"react-timer-hook": "^3.0.7",
2024-03-15 16:00:17 +08:00
"rehype-mathjax": "^6.0.0",
"rehype-raw": "^7.0.0",
"remark-emoji": "^4.0.1",
"remark-gfm": "^4.0.0",
2024-03-15 19:04:16 +08:00
"remark-math": "^6.0.0",
2024-04-27 23:51:12 +08:00
"universal-cookie": "^7.1.4"
2024-02-20 17:03:05 +08:00
},
"devDependencies": {
2024-04-27 23:51:12 +08:00
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
2024-02-20 17:03:05 +08:00
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
2024-03-15 13:50:07 +08:00
"eslint": "^8.57.0",
2024-02-20 17:03:05 +08:00
"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",
2024-03-16 16:47:05 +08:00
"eslint-plugin-react": "^7.34.1",
2024-04-27 23:51:12 +08:00
"eslint-plugin-react-hooks": "^4.6.2",
2024-02-20 17:03:05 +08:00
"husky": "^9.0.11",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.2",
"postcss-load-config": "^5.0.3",
2024-02-20 17:03:05 +08:00
"prettier": "^3.2.5",
2024-04-27 23:51:12 +08:00
"typescript": "^5.4.5",
"vite": "^5.2.10",
2024-03-15 13:50:07 +08:00
"vite-tsconfig-paths": "^4.3.2"
2024-02-20 17:03:05 +08:00
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --cache --cache-location ./node_modules/.cache/eslint --fix"
]
}
}