Skip to content

Commit

Permalink
feat: add websockets, icons, welcome page, deps up
Browse files Browse the repository at this point in the history
  • Loading branch information
mistical2008 committed Apr 9, 2022
1 parent e5ca124 commit 3927c73
Show file tree
Hide file tree
Showing 24 changed files with 15,797 additions and 114 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VITE_BACKEND_PORT=8900
69 changes: 37 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"version": "0.1.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"clean": "npx rimraf ./dist",
"compile": "tsc -p tsconfig.build.json",
"build": "pnpm clean && pnpm compile && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
Expand All @@ -13,51 +15,54 @@
"gen:mockdb": "node -r @swc-node/register scripts/gen-mock-db.ts"
},
"dependencies": {
"antd": "^4.19.3",
"antd": "^4.19.5",
"axios": "^0.26.1",
"fp-ts": "^2.11.9",
"framer-motion": "^6.2.8",
"framer-motion": "^6.2.9",
"nanoid": "^3.3.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-query": "^3.34.19",
"react-router-dom": "^6.2.2",
"react-icons": "^4.3.1",
"react-router-dom": "^6.3.0",
"react-virtual": "^2.10.4",
"recharts": "^2.1.9",
"recoil": "^0.6.1",
"simple-appointment-calendar": "link:"
"socket.io-client": "^4.4.1"
},
"devDependencies": {
"@babel/core": ">=7.11.5 <8.0.0",
"@faker-js/faker": "^6.1.1",
"@babel/core": "^7.17.9",
"@faker-js/faker": "^6.1.2",
"@feature-sliced/eslint-config": "^0.1.0-beta.6",
"@storybook/addon-a11y": "^6.4.19",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-measure": "^6.4.19",
"@storybook/core-common": "^6.4.3",
"@storybook/addon-a11y": "^6.4.21",
"@storybook/addon-actions": "^6.4.21",
"@storybook/addon-essentials": "^6.4.21",
"@storybook/addon-interactions": "^6.4.21",
"@storybook/addon-links": "^6.4.21",
"@storybook/addon-measure": "^6.4.21",
"@storybook/core-common": "^6.4.21",
"@storybook/jest": "^0.0.10",
"@storybook/react": "^6.4.19",
"@storybook/react": "^6.4.21",
"@storybook/testing-library": "^0.0.9",
"@swc-node/register": "^1.4.2",
"@testing-library/dom": ">=7.21.4",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.0",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^14.0.0",
"@testing-library/user-event": "^14.0.4",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@vitejs/plugin-react": "^1.3.0",
"@vitest/ui": "^0.8.1",
"babel-loader": "^8.0.0",
"eslint": "^8.12.0",
"eslint-import-resolver-typescript": "^2.7.0",
"@vitest/ui": "^0.8.5",
"babel-loader": "^8.2.4",
"eslint": "^8.13.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-boundaries": "^2.9.0",
"eslint-plugin-fp-ts": "^0.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-listeners": "^1.1.0",
"eslint-plugin-react": "^7.29.4",
Expand All @@ -69,14 +74,14 @@
"jsdom": "^19.0.0",
"less": "^4.1.2",
"msw": "^0.39.2",
"prettier": "^2.6.1",
"storybook-builder-vite": "^0.1.22",
"prettier": "^2.6.2",
"storybook-builder-vite": "^0.1.23",
"typescript": "^4.6.3",
"vite": "^2.9.0",
"vite": "^2.9.1",
"vite-aliases": "^0.9.2",
"vite-plugin-imp": "^2.1.7",
"vite-tsconfig-paths": "^3.4.1",
"vitest": "^0.8.1",
"vitest": "^0.8.5",
"webpack": "*"
},
"msw": {
Expand Down
Loading

0 comments on commit 3927c73

Please sign in to comment.