Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development: Move repository from yarn to npm #56

Merged
merged 8 commits into from
Oct 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update package.json
matthiaslehnertum committed Oct 11, 2023
commit 7bc372c72eff0ce6a79228f7345b7acbe2dca037
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -17,13 +17,13 @@
},
"scripts": {
"start": "concurrently \"npm run start:webapp\" \"npm run start:server\" ",
"start:webapp": "npm run workspace webapp start",
"start:server": "npm run workspace server start",
"start:webapp": "npm run start --workspace=webapp",
"start:server": "npm run start --workspace=server",
"build": "concurrently \"npm run build:webapp\" \"npm run build:server\" ",
"build:local": "concurrently \"npm run build:webapp:local\" \"npm run build:server\" ",
"build:webapp": "npm run workspace webapp build",
"build:webapp:local": "npm run workspace webapp build:local",
"build:server": "npm run workspace server build",
"build:webapp": "npm run build --workspace=webapp",
"build:webapp:local": "npm run build:local --workspace=webapp",
"build:server": "npm run build --workspace=server",
"lint": "concurrently \"npm run lint:webapp\" \"npm run lint:server\"",
"lint:webapp": "npm run lint --workspace=webapp",
"lint:server": "npm run lint --workspace=server",
2 changes: 1 addition & 1 deletion packages/webapp/package.json
Original file line number Diff line number Diff line change
@@ -59,7 +59,7 @@
"fork-ts-checker-notifier-webpack-plugin": "7.0.0",
"fork-ts-checker-webpack-plugin": "8.0.0",
"html-webpack-plugin": "5.5.3",
"postcss": "^8.4.31",
"postcss": "8.4.31",
"prettier": "3.0.3",
"react-toastify": "9.1.3",
"style-loader": "3.3.3",