Skip to content

Commit

Permalink
fix: change package manager to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
camera-2018 committed Jan 16, 2023
1 parent c6f6a2d commit e8b1b48
Show file tree
Hide file tree
Showing 5 changed files with 7,405 additions and 7,800 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "frontend",
"private": true,
"version": "1.0.0",
"scripts": {
"build": "nuxi build",
"dev": "nuxi dev",
"start": "node .output/server/index.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "nuxi prepare",
"generate": "nuxi generate",
"typecheck": "tsc --noEmit --incremental false",
"lint:strict": "eslint --max-warnings=0 ."
Expand Down
15 changes: 11 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@
"version": "1.0.0",
"description": "",
"main": "index.ts",
"private": true,
"scripts": {
"prepare": "husky install"
"prepare": "husky install",
"postinstall": "nuxi prepare"
},
"packageManager": "pnpm@7.25.0",
"dependencies": {
"frontend": "workspace:*"
"packageManager": "yarn@1.22.19",
"workspaces": [
"frontend"
],
"devDependencies": {
"husky": "^8.0.3",
"nuxt": "^3.0.0",
"turbo": "^1.7.0"
}
}
Loading

0 comments on commit e8b1b48

Please sign in to comment.