Skip to content

Commit f534c13

Browse files
Add pnpm audit step to CI, update dependencies (#110)
* Add pnpm audit step to CI, update dependencies * Add prettier to dev dependencies
1 parent 8b2bc7a commit f534c13

File tree

4 files changed

+1871
-3220
lines changed

4 files changed

+1871
-3220
lines changed

.github/workflows/lint-web.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,6 @@ jobs:
3030
- name: Lint
3131
working-directory: ./web
3232
run: pnpm lint
33+
- name: Audit
34+
working-directory: ./web
35+
run: pnpm audit --prod

web/.typesafe-i18n.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"adapter": "react",
3-
"$schema": "https://unpkg.com/typesafe-i18n@5.26.0/schema/typesafe-i18n.json"
3+
"$schema": "https://unpkg.com/typesafe-i18n@5.26.2/schema/typesafe-i18n.json"
44
}

web/package.json

Lines changed: 40 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -37,62 +37,63 @@
3737
}
3838
},
3939
"dependencies": {
40-
"@floating-ui/react": "^0.25.0",
41-
"@hookform/resolvers": "^3.1.1",
40+
"@floating-ui/react": "^0.25.4",
41+
"@hookform/resolvers": "^3.10.0",
4242
"@stablelib/base64": "^1.0.1",
4343
"@stablelib/x25519": "^1.0.3",
44-
"@tanstack/query-core": "^4.32.6",
45-
"axios": "^1.6.0",
46-
"classnames": "^2.3.2",
44+
"@tanstack/query-core": "^4.36.1",
45+
"axios": "^1.9.0",
46+
"classnames": "^2.5.1",
4747
"clipboardy": "^3.0.0",
48-
"dayjs": "^1.11.9",
48+
"dayjs": "^1.11.13",
4949
"fast-deep-equal": "^3.1.3",
5050
"file-saver": "^2.0.5",
51-
"framer-motion": "^10.15.0",
52-
"html-react-parser": "^4.2.0",
51+
"framer-motion": "^10.18.0",
52+
"html-react-parser": "^4.2.10",
5353
"lodash-es": "^4.17.21",
54-
"react": "^18.2.0",
55-
"react-click-away-listener": "^2.2.3",
56-
"react-dom": "^18.2.0",
57-
"react-hook-form": "^7.45.3",
54+
"react": "^18.3.1",
55+
"react-click-away-listener": "^2.4.0",
56+
"react-dom": "^18.3.1",
57+
"react-hook-form": "^7.56.4",
5858
"react-markdown": "^8.0.7",
59-
"react-qr-code": "^2.0.11",
60-
"react-router-dom": "^6.14.2",
59+
"react-qr-code": "^2.0.15",
60+
"react-router-dom": "^6.30.0",
6161
"rehype-sanitize": "^5.0.1",
62-
"rxjs": "^7.8.1",
62+
"rxjs": "^7.8.2",
6363
"use-breakpoint": "^3.1.1",
64-
"zod": "^3.22.3",
65-
"zustand": "^4.4.0"
64+
"zod": "^3.24.4",
65+
"zustand": "^4.5.7"
6666
},
6767
"devDependencies": {
68-
"@svgr/cli": "^8.0.1",
69-
"@tanstack/react-query": "^4.32.6",
70-
"@tanstack/react-query-devtools": "^4.32.6",
68+
"@svgr/cli": "^8.1.0",
69+
"@tanstack/react-query": "^4.36.1",
70+
"@tanstack/react-query-devtools": "^4.36.1",
7171
"@types/file-saver": "^2.0.7",
7272
"@types/lodash-es": "^4.17.12",
73-
"@types/node": "^20.14.8",
74-
"@types/react": "^18.2.18",
75-
"@types/react-dom": "^18.2.7",
76-
"@typescript-eslint/eslint-plugin": "^6.2.1",
77-
"@typescript-eslint/parser": "^6.2.1",
78-
"@vitejs/plugin-react": "^4.0.4",
79-
"@vitejs/plugin-react-swc": "^3.3.2",
80-
"autoprefixer": "^10.4.14",
81-
"eslint": "^8.46.0",
73+
"@types/node": "^20.17.48",
74+
"@types/react": "^18.3.21",
75+
"@types/react-dom": "^18.3.7",
76+
"@typescript-eslint/eslint-plugin": "^6.21.0",
77+
"@typescript-eslint/parser": "^6.21.0",
78+
"@vitejs/plugin-react": "^4.4.1",
79+
"@vitejs/plugin-react-swc": "^3.9.0",
80+
"autoprefixer": "^10.4.21",
81+
"eslint": "^8.57.1",
8282
"eslint-config-prettier": "^8.10.0",
83-
"eslint-plugin-import": "^2.29.1",
84-
"eslint-plugin-prettier": "^5.2.1",
85-
"eslint-plugin-react": "^7.35.0",
86-
"eslint-plugin-react-hooks": "^4.6.0",
87-
"eslint-plugin-react-refresh": "^0.4.11",
83+
"eslint-plugin-import": "^2.31.0",
84+
"eslint-plugin-prettier": "^5.4.0",
85+
"eslint-plugin-react": "^7.37.5",
86+
"eslint-plugin-react-hooks": "^4.6.2",
87+
"eslint-plugin-react-refresh": "^0.4.20",
8888
"eslint-plugin-simple-import-sort": "^10.0.0",
8989
"npm-run-all": "^4.1.5",
90-
"postcss": "^8.4.31",
91-
"sass": "^1.64.2",
90+
"postcss": "^8.5.3",
91+
"prettier": "^3.5.3",
92+
"sass": "~1.70.0",
9293
"typedoc": "^0.24.8",
93-
"typesafe-i18n": "^5.26.0",
94-
"typescript": "^5.1.6",
94+
"typesafe-i18n": "^5.26.2",
95+
"typescript": "^5.8.3",
9596
"typescript-eslint-language-service": "^5.0.5",
96-
"vite": "^4.4.12"
97+
"vite": "^4.5.14"
9798
}
9899
}

0 commit comments

Comments
 (0)