-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from fuzmish/fix/upgrade
Fix/upgrade
- Loading branch information
Showing
7 changed files
with
3,160 additions
and
2,604 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM node:22-bookworm | ||
|
||
# setup pnpm | ||
ARG PNPM_VERSION=9.12.0 | ||
ARG PNPM_ENV_FILE=/etc/profile.d/pnpm.sh | ||
ARG PNPM_STORE_DIR=/opt/pnpm/store | ||
|
||
RUN curl -fsSL https://get.pnpm.io/install.sh \ | ||
| ENV="$PNPM_ENV_FILE" SHELL="$(which sh)" PNPM_VERSION="$PNPM_VERSION" sh - \ | ||
&& . "$PNPM_ENV_FILE" \ | ||
&& pnpm config set store-dir "$PNPM_STORE_DIR" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,24 +2,37 @@ | |
"name": "cw-iam", | ||
"version": "0.0.1", | ||
"private": true, | ||
"homepage": "https://fuzmish.github.io/cw-iam", | ||
"homepage": "https://github.com/fuzmish/cw-iam", | ||
"type": "module", | ||
"dependencies": { | ||
"fuse.js": "^7.0.0", | ||
"highlight.js": "^11.9.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react-icons": "^5.0.1", | ||
"react-resizable-panels": "^1.0.9", | ||
"react-router-dom": "^6.21.3", | ||
"react-virtuoso": "^4.6.2", | ||
"swr": "^2.2.4" | ||
}, | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"preview": "vite preview" | ||
}, | ||
"packageManager": "[email protected]+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca", | ||
"dependencies": { | ||
"fuse.js": "^7.0.0", | ||
"highlight.js": "^11.10.0", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"react-icons": "^5.3.0", | ||
"react-resizable-panels": "^2.1.4", | ||
"react-router-dom": "^6.26.2", | ||
"react-virtuoso": "^4.10.4", | ||
"swr": "^2.2.5" | ||
}, | ||
"devDependencies": { | ||
"@types/react-dom": "^18.3.0", | ||
"@typescript-eslint/eslint-plugin": "^8.8.0", | ||
"@typescript-eslint/parser": "^8.8.0", | ||
"@vitejs/plugin-react": "^4.3.2", | ||
"eslint": "^9.12.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-react": "^7.37.1", | ||
"prettier": "^3.3.3", | ||
"typescript": "^5.6.2", | ||
"vite": "^5.4.8" | ||
}, | ||
"browserslist": { | ||
"production": [ | ||
">0.2%", | ||
|
@@ -31,17 +44,5 @@ | |
"last 1 firefox version", | ||
"last 1 safari version" | ||
] | ||
}, | ||
"devDependencies": { | ||
"@types/react-dom": "^18.2.18", | ||
"@typescript-eslint/eslint-plugin": "^6.19.0", | ||
"@typescript-eslint/parser": "^6.19.0", | ||
"@vitejs/plugin-react": "^4.2.1", | ||
"eslint": "^8.56.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-react": "^7.33.2", | ||
"prettier": "^3.2.4", | ||
"typescript": "^5.3.3", | ||
"vite": "^5.0.13" | ||
} | ||
} |
Oops, something went wrong.