-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.85 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.85 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
{
"name": "evops-website",
"private": true,
"type": "module",
"scripts": {
"codegen": "buf generate --clean",
"dev": "pnpm run codegen && vite --port 3000",
"start": "pnpm run codegen && vite --port 3000",
"build": "pnpm run codegen && vite build && tsc",
"serve": "vite preview",
"test": "pnpm run codegen && vitest run",
"lint": "pnpm run codegen && eslint",
"format": "prettier --write ./",
"format:check": "prettier --check ./"
},
"dependencies": {
"@bufbuild/protobuf": "^2.6.0",
"@connectrpc/connect": "^2.0.2",
"@connectrpc/connect-web": "^2.0.2",
"@extism/extism": "2.0.0-rc13",
"@tailwindcss/vite": "^4.0.6",
"@tanstack/react-query": "^5.66.5",
"@tanstack/react-query-devtools": "^5.66.5",
"@tanstack/react-router": "^1.121.2",
"@tanstack/react-router-devtools": "^1.121.2",
"@tanstack/router-plugin": "^1.121.2",
"clsx": "^2.1.1",
"daisyui": "^5.0.46",
"i18next": "^25.3.2",
"lucide-react": "^0.525.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.6.0",
"tailwindcss": "^4.0.6",
"zustand": "^5.0.6"
},
"devDependencies": {
"@bufbuild/buf": "^1.55.1",
"@bufbuild/protoc-gen-es": "^2.6.0",
"@eslint/eslintrc": "^3.3.1",
"@tanstack/eslint-config": "^0.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^24.0.13",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"jsdom": "^26.0.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"typescript": "^5.7.2",
"vite": "^6.1.0",
"vite-plugin-pwa": "^1.0.1",
"vitest": "^3.0.5",
"web-vitals": "^4.2.4"
}
}