2023-08-10 17:58:59 +00:00
|
|
|
{
|
2023-08-11 14:53:27 +00:00
|
|
|
"name": "webclient",
|
2023-08-10 17:58:59 +00:00
|
|
|
"version": "0.0.1",
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"engines": {
|
2024-07-18 19:12:42 +00:00
|
|
|
"node": "18.20.4",
|
2023-08-10 17:58:59 +00:00
|
|
|
"yarn": "1.22.19"
|
|
|
|
},
|
2024-02-28 21:28:22 +00:00
|
|
|
"type": "module",
|
2023-08-10 17:58:59 +00:00
|
|
|
"private": true,
|
2023-08-11 14:53:27 +00:00
|
|
|
"dependencies": {
|
2023-11-18 00:05:14 +00:00
|
|
|
"@radix-ui/react-collapsible": "^1.0.3",
|
2023-12-08 23:55:57 +00:00
|
|
|
"@radix-ui/react-dialog": "^1.0.5",
|
2023-11-28 21:31:56 +00:00
|
|
|
"@radix-ui/react-popover": "^1.0.6",
|
2023-08-16 22:52:31 +00:00
|
|
|
"classnames": "^2.3.1",
|
2023-08-11 14:53:27 +00:00
|
|
|
"react": "^18.2.0",
|
2023-11-04 00:46:30 +00:00
|
|
|
"react-dom": "^18.2.0",
|
2023-12-05 23:03:05 +00:00
|
|
|
"swr": "^2.2.4",
|
2023-12-05 15:09:33 +00:00
|
|
|
"wouter": "^2.11.0",
|
|
|
|
"zustand": "^4.4.7"
|
2023-08-11 14:53:27 +00:00
|
|
|
},
|
2023-08-10 17:58:59 +00:00
|
|
|
"devDependencies": {
|
2024-02-23 21:50:41 +00:00
|
|
|
"@types/node": "^18.16.1",
|
2023-08-11 15:44:57 +00:00
|
|
|
"@types/react": "^18.0.20",
|
|
|
|
"@types/react-dom": "^18.0.6",
|
2024-02-22 21:00:36 +00:00
|
|
|
"@vitejs/plugin-react-swc": "^3.6.0",
|
2023-08-14 16:51:59 +00:00
|
|
|
"autoprefixer": "^10.4.15",
|
2023-11-28 21:31:56 +00:00
|
|
|
"eslint": "^8.23.1",
|
|
|
|
"eslint-config-react-app": "^7.0.1",
|
2024-02-08 18:09:26 +00:00
|
|
|
"eslint-plugin-curly-quotes": "^1.0.4",
|
2023-12-06 17:20:44 +00:00
|
|
|
"jsdom": "^23.0.1",
|
2023-10-08 00:53:57 +00:00
|
|
|
"postcss": "^8.4.31",
|
2023-08-15 15:22:35 +00:00
|
|
|
"prettier": "^2.5.1",
|
|
|
|
"prettier-plugin-organize-imports": "^3.2.2",
|
2023-08-14 16:51:59 +00:00
|
|
|
"tailwindcss": "^3.3.3",
|
2024-02-27 21:17:30 +00:00
|
|
|
"typescript": "^5.3.3",
|
2024-04-03 17:22:47 +00:00
|
|
|
"vite": "^5.1.7",
|
2024-02-22 20:16:44 +00:00
|
|
|
"vite-plugin-svgr": "^4.2.0",
|
2023-08-14 16:51:59 +00:00
|
|
|
"vite-tsconfig-paths": "^3.5.0",
|
2024-02-23 21:50:41 +00:00
|
|
|
"vitest": "^1.3.1"
|
2023-08-10 17:58:59 +00:00
|
|
|
},
|
2024-02-27 21:17:30 +00:00
|
|
|
"resolutions": {
|
|
|
|
"@typescript-eslint/eslint-plugin": "^6.2.1",
|
|
|
|
"@typescript-eslint/parser": "^6.2.1"
|
|
|
|
},
|
2023-08-10 17:58:59 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "vite build",
|
|
|
|
"start": "vite",
|
2023-11-28 21:31:56 +00:00
|
|
|
"lint": "tsc --noEmit && eslint 'src/**/*.{ts,tsx,js,jsx}'",
|
2023-08-15 15:22:35 +00:00
|
|
|
"test": "vitest",
|
|
|
|
"format": "prettier --write 'src/**/*.{ts,tsx}'",
|
|
|
|
"format-check": "prettier --check 'src/**/*.{ts,tsx}'"
|
2023-08-10 17:58:59 +00:00
|
|
|
},
|
2023-11-28 21:31:56 +00:00
|
|
|
"eslintConfig": {
|
|
|
|
"extends": [
|
|
|
|
"react-app"
|
|
|
|
],
|
|
|
|
"plugins": [
|
2024-02-08 18:09:26 +00:00
|
|
|
"curly-quotes",
|
2023-11-28 21:31:56 +00:00
|
|
|
"react-hooks"
|
|
|
|
],
|
|
|
|
"rules": {
|
2024-02-08 18:09:26 +00:00
|
|
|
"curly-quotes/no-straight-quotes": "warn",
|
2023-11-28 21:31:56 +00:00
|
|
|
"react-hooks/rules-of-hooks": "error",
|
|
|
|
"react-hooks/exhaustive-deps": "error"
|
|
|
|
},
|
|
|
|
"settings": {
|
|
|
|
"projectRoot": "client/web/package.json"
|
|
|
|
}
|
|
|
|
},
|
2023-08-10 17:58:59 +00:00
|
|
|
"prettier": {
|
|
|
|
"semi": false,
|
|
|
|
"printWidth": 80
|
2023-11-29 16:30:45 +00:00
|
|
|
},
|
|
|
|
"postcss": {
|
|
|
|
"plugins": {
|
|
|
|
"tailwindcss": {},
|
|
|
|
"autoprefixer": {}
|
|
|
|
}
|
2023-08-10 17:58:59 +00:00
|
|
|
}
|
|
|
|
}
|