monorepo/apps/admin/package.json

55 lines
1.7 KiB
JSON
Raw Normal View History

2024-06-25 21:59:50 +08:00
{
"name": "@3rapp/admin",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --no-clearScreen",
"build": "tsc && vite build",
"start": "pnpm preview",
"preview": "vite preview",
"lint": "pnpm lint:es && pnpm lint:style",
"lint:es": "eslint . --ext ts,tsx --fix --report-unused-disable-directives --max-warnings 0",
"lint:style": "stylelint \"**/*.css\" --fix --cache --cache-location node_modules/.cache/stylelint/"
},
"dependencies": {
"@3rapp/store": "workspace:*",
2024-07-02 09:21:48 +08:00
"@3rapp/utils": "workspace:*",
2024-06-25 21:59:50 +08:00
"@ant-design/cssinjs": "^1.20.0",
"antd": "^5.18.1",
2024-07-02 09:21:48 +08:00
"antd-style": "^3.6.2",
2024-06-25 21:59:50 +08:00
"axios": "^1.7.0",
2024-07-02 09:21:48 +08:00
"classnames": "^2.5.1",
2024-06-25 21:59:50 +08:00
"clsx": "^2.1.1",
"dayjs": "^1.11.11",
"immer": "^10.1.1",
"lodash": "^4.17.21",
2024-07-02 09:21:48 +08:00
"lunar-typescript": "^1.7.5",
2024-06-25 21:59:50 +08:00
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use": "^17.5.0",
"utility-types": "^3.11.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@3rapp/core": "workspace:*",
"@3rapp/utils": "workspace:*",
"@types/lodash": "^4.17.5",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"postcss-import": "^16.1.0",
"postcss-mixins": "^10.0.1",
"postcss-nested": "^6.0.1",
"postcss-nesting": "^12.1.4",
"prettier": "^3.2.5",
"stylelint": "^16.5.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.11"
}
}