zero-ui/frontend/package.json

52 lines
1.6 KiB
JSON
Raw Normal View History

2021-03-22 03:25:13 +08:00
{
2021-08-24 19:46:37 +08:00
"name": "frontend",
2021-03-22 03:25:13 +08:00
"private": true,
"dependencies": {
2022-08-26 17:03:51 +08:00
"@fontsource/roboto": "^4.5.8",
2022-06-12 22:20:22 +08:00
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/styles": "^4.11.5",
2021-08-24 18:18:20 +08:00
"@uiw/react-codemirror": "^3.1.0",
2022-06-12 22:06:18 +08:00
"axios": "^0.27.2",
2021-08-24 19:28:18 +08:00
"codemirror": "^5.62.3",
2022-08-26 07:25:16 +08:00
"date-fns": "^2.29.2",
2022-06-12 22:20:22 +08:00
"history": "^5.3.0",
2021-06-12 16:28:52 +08:00
"ipaddr.js": "^2.0.1",
2021-03-22 03:25:13 +08:00
"lodash": "^4.17.21",
2021-04-16 19:27:31 +08:00
"react": "^17.0.2",
2021-08-24 18:18:20 +08:00
"react-data-table-component": "^6.11.8",
2021-04-16 19:27:31 +08:00
"react-dom": "^17.0.2",
2021-08-24 19:46:37 +08:00
"react-is": "^17.0.2",
2021-03-22 03:25:13 +08:00
"react-router-dom": "^5.2.0",
2022-06-12 22:58:49 +08:00
"react-use": "^17.4.0",
2023-10-09 00:07:39 +08:00
"styled-components": "^5.3.11"
2021-03-22 03:25:13 +08:00
},
"devDependencies": {
2023-10-09 00:12:54 +08:00
"@types/codemirror": "^5.60.10",
"@types/lodash": "^4.14.199",
2023-10-09 00:07:39 +08:00
"@types/react": "^17.0.67",
"@types/react-dom": "^17.0.21",
2023-10-09 00:12:54 +08:00
"@types/react-is": "^17.0.5",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.28",
2023-10-05 02:17:02 +08:00
"@vitejs/plugin-react": "^4.1.0",
2023-10-09 00:07:39 +08:00
"eslint": "^8.51.0",
2023-10-05 02:17:02 +08:00
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"rimraf": "^5.0.5",
"source-map-explorer": "^2.5.3",
2023-10-05 02:30:01 +08:00
"typescript": "^5.2.2",
2023-10-09 00:07:39 +08:00
"vite": "^4.4.11"
2021-03-22 03:25:13 +08:00
},
"scripts": {
2023-10-05 02:17:02 +08:00
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"clean": "rimraf build",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
2023-10-05 02:30:01 +08:00
"typecheck": "tsc --pretty --noEmit -p tsconfig.json",
2023-10-06 23:19:14 +08:00
"analyze": "vite build --sourcemap true && source-map-explorer 'build/assets/*.js' --no-border-checks"
2021-03-22 03:25:13 +08:00
}
}