-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.36 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "pkvault-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest",
"c:type": "tsgo -b",
"c:type:classic": "tsc -b",
"c:lint": "eslint .",
"gen:routes": "tsr generate",
"gen:sdk": "cross-env VITE_OPENAPI_PATH=http://localhost:5000/swagger/v1/swagger.json npm run gen:sdk:basic",
"gen:sdk:basic": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node ./generate-sdk.ts",
"gen:docs": "node ./generate-docs.ts"
},
"dependencies": {
"@emotion/css": "^11.13.5",
"@hackernoon/pixel-icon-library": "^1.0.6",
"@headlessui/react": "^2.2.4",
"@tanstack/react-query": "^5.81.5",
"@tanstack/react-router": "^1.127.1",
"@tanstack/react-router-devtools": "^1.127.1",
"@tanstack/zod-adapter": "^1.127.3",
"@yornaath/batshit": "^0.14.0",
"github-slugger": "^2.0.0",
"i18next": "^26.0.6",
"js-convert-case": "^4.2.0",
"normalize.css": "^8.0.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-error-boundary": "^6.0.0",
"react-hook-form": "^7.72.0",
"react-i18next": "^17.0.4",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@rolldown/plugin-babel": "^0.2.2",
"@tanstack/router-cli": "^1.158.0",
"@tanstack/router-plugin": "^1.127.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.2.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript/native-preview": "^7.0.0-dev.20260421.2",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"babel-plugin-react-compiler": "^1.0.0",
"cross-env": "^10.0.0",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^16.5.0",
"jsdom": "^28.1.0",
"json-schema-to-typescript": "^15.0.4",
"msw": "^2.12.10",
"orval": "^8.8.0",
"prettier": "^3.8.1",
"sharp": "^0.34.5",
"svgo": "^4.0.1",
"typescript": "6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.3",
"vite-plugin-image-optimizer": "^2.0.3",
"vitest": "^4.1.2"
}
}