Switch to npm

This commit is contained in:
Justin Spahr-Summers
2024-10-28 10:48:22 +00:00
parent 82f3d99639
commit 702f827f74
5 changed files with 5827 additions and 3309 deletions

View File

@@ -8,13 +8,13 @@
"server"
],
"scripts": {
"dev": "concurrently \"cd client && yarn dev\" \"cd server && yarn dev\"",
"build-server": "cd server && yarn build",
"build-client": "cd client && yarn build",
"build": "yarn build-server && yarn build-client",
"start-server": "cd server && yarn start",
"start-client": "cd client && yarn preview",
"start": "concurrently \"yarn start-server\" \"yarn start-client\"",
"dev": "concurrently \"cd client && npm run dev\" \"cd server && npm run dev\"",
"build-server": "cd server && npm run build",
"build-client": "cd client && npm run build",
"build": "npm run build-server && npm run build-client",
"start-server": "cd server && npm run start",
"start-client": "cd client && npm run preview",
"start": "concurrently \"npm run start-server\" \"npm run start-client\"",
"prettier-fix": "prettier --write ."
},
"devDependencies": {