DocsGPT/frontend/package.json

60 lines
1.7 KiB
JSON
Raw Normal View History

2023-02-07 17:57:21 +00:00
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
2023-02-09 04:33:56 +00:00
"preview": "vite preview",
"lint": "eslint ./src --ext .jsx,.js,.ts,.tsx",
"lint-fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --fix",
"format": "prettier ./src --write",
"prepare": "cd .. && husky install frontend/.husky"
},
2023-02-09 17:21:08 +00:00
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
2023-02-09 04:33:56 +00:00
"npm run lint-fix",
"npm run format"
]
2023-02-07 17:57:21 +00:00
},
"dependencies": {
2023-02-15 02:39:53 +00:00
"@reduxjs/toolkit": "^1.9.2",
2023-02-27 19:24:26 +00:00
"@vercel/analytics": "^0.1.10",
2023-02-07 17:57:21 +00:00
"react": "^18.2.0",
2023-02-11 16:56:44 +00:00
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
2023-04-25 16:01:44 +00:00
"react-markdown": "^8.0.7",
2023-02-15 02:39:53 +00:00
"react-redux": "^8.0.5",
2023-04-25 16:01:44 +00:00
"react-router-dom": "^6.8.1",
"react-syntax-highlighter": "^15.5.0"
2023-02-07 17:57:21 +00:00
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
2023-04-25 16:01:44 +00:00
"@types/react-syntax-highlighter": "^15.5.6",
2023-02-09 02:31:22 +00:00
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
2023-02-07 17:57:21 +00:00
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
2023-02-09 02:31:22 +00:00
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-unused-imports": "^2.0.0",
2023-02-09 04:33:56 +00:00
"husky": "^8.0.0",
"lint-staged": "^13.1.1",
"postcss": "^8.4.31",
2023-02-09 02:31:22 +00:00
"prettier": "^2.8.4",
2023-02-10 22:05:10 +00:00
"prettier-plugin-tailwindcss": "^0.2.2",
2023-02-07 17:57:21 +00:00
"tailwindcss": "^3.2.4",
2023-02-09 02:31:22 +00:00
"typescript": "^4.9.5",
"vite": "^4.1.5",
2023-03-05 17:06:57 +00:00
"vite-plugin-svgr": "^2.4.0"
2023-02-07 17:57:21 +00:00
}
}