- Updated .js files to .jsx on frontend.

- Removed Yarn dependency and replaced with PNPM
- Changed Frontend to render via vite
This commit is contained in:
Greg L
2023-11-23 08:17:06 -05:00
parent 34702a9ba2
commit 0f09faa1bc
120 changed files with 25959 additions and 385 deletions
+7 -9
View File
@@ -10,20 +10,18 @@
"components"
],
"scripts": {
"build": "turbo run build",
"build-force": "turbo run build --force",
"dev": "turbo run dev --parallel",
"start": "run-script-os",
"dev": "kill-port 3000 5173 && pnpm --filter \"./packages/**\" dev",
"build": "pnpm --filter \"./packages/**\" build",
"start": "kill-port 3000 && run-script-os",
"start:windows": "cd packages/server/bin && run start",
"start:default": "cd packages/server/bin && ./run start",
"clean": "npm exec -ws -- rimraf dist build",
"clean": "pnpm exec -ws -- rimraf dist build",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test",
"lint": "eslint \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint-fix": "yarn lint --fix",
"lint-fix": "pnpm lint --fix",
"quick": "pretty-quick --staged",
"postinstall": "husky install",
"migration:create": "yarn typeorm migration:create"
"migration:create": "pnpm typeorm migration:create"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "eslint --fix"
@@ -43,12 +41,12 @@
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"kill-port": "^2.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"run-script-os": "^1.1.6",
"turbo": "1.7.4",
"typescript": "^4.8.4"
},
"engines": {