Skip to content

Commit

Permalink
#207 Backend Frontend separation
Browse files Browse the repository at this point in the history
 - separating frontend from backend so that it is a self-contained project with its own dependencies in the ui folder
  • Loading branch information
MaximilianZenz committed Dec 11, 2023
1 parent 2da1608 commit de8fac3
Show file tree
Hide file tree
Showing 16 changed files with 14,114 additions and 1,362 deletions.
3,204 changes: 2,062 additions & 1,142 deletions package-lock.json

Large diffs are not rendered by default.

27 changes: 5 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@
"@codemirror/view": "^6.9.2",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@fortawesome/fontawesome-free": "^6.3.0",
"@grpc/grpc-js": "^1.8.12",
"@octokit/core": "^5.0.0",
"@octokit/graphql": "^7.0.1",
Expand All @@ -93,9 +92,6 @@
"body-parser": "^1.20.2",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"bulma": "^0.9.4",
"bulma-switch": "^2.0.4",
"bulma-tooltip": "^3.0.2",
"chai": "^4.3.7",
"chalk": "^4.1.2",
"chroma-js": "^2.4.2",
Expand Down Expand Up @@ -149,17 +145,6 @@
"proxyquire": "^2.1.3",
"random-js": "^2.1.0",
"rc": "^1.2.8",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-measure": "^2.5.2",
"react-reach": "^0.4.1",
"react-redux": "^8.0.5",
"react-router-dom": "^6.9.0",
"react-scroll": "^1.8.4",
"react-tippy": "^1.4.0",
"react-transition-group": "^4.4.2",
"redux": "^4.2.1",
"redux-actions": "^3.0.0",
"redux-logger": "^3.0.6",
Expand Down Expand Up @@ -190,26 +175,24 @@
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.0.3",
"@vitejs/plugin-react-swc": "^3.5.0",
"debug": "^4.3.3",
"depcheck": "^1.4.3",
"eslint": "^8.53.0",
"eslint-config-lambdas": "^0.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"mocha": "^9.1.3",
"postcss": "^8.4.32",
"prettier": "^2.8.4",
"prettier": "^3.1.1",
"react-error-overlay": "^6.0.10",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^4.4.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"sass": "^1.69.5",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"tsx": "^3.14.0",
"typescript": "^5.2.2",
"url-loader": "4.1.1",
"vite": "^5.0.0",
"vite-plugin-node-polyfills": "^0.17.0"
"url-loader": "4.1.1"
},
"overrides": {
"pouchdb-adapter-memory": {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
},
"include": ["ui"],
"exclude": ["node_modules", "ui/dist"],
"references": [{ "path": "./tsconfig.node.json" }]
"references": [{ "path": "./ui/tsconfig.node.json"}]
}
2 changes: 1 addition & 1 deletion ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script type="module" src="./src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit de8fac3

Please sign in to comment.