-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.33 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.33 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
76
77
78
{
"name": "convos-web",
"version": "0.0.1",
"type": "module",
"scripts": {
"build": "yarn clean:build && vite build",
"clean": "rimraf node_modules && yarn clean:build",
"clean:build": "rimraf dist .output",
"dev": "vite dev --port 3000",
"fix": "oxlint --fix && oxfmt .",
"format:check": "oxfmt --check .",
"generate": "buf generate",
"lint": "oxlint && buf lint",
"preview": "vite preview",
"reset": "yarn clean && yarn",
"start": "node .output/server/index.mjs",
"test": "echo 'No tests yet'"
},
"dependencies": {
"@bufbuild/protobuf": "^2.11.0",
"@mantine/core": "^8.3.16",
"@mantine/dates": "^8.3.16",
"@mantine/hooks": "^8.3.16",
"@mantine/notifications": "^8.3.16",
"@noble/ciphers": "^2.1.1",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@tanstack/react-devtools": "^0.9.13",
"@tanstack/react-router": "^1.166.7",
"@tanstack/react-router-devtools": "^1.166.7",
"@tanstack/react-router-ssr-query": "^1.166.7",
"@tanstack/react-start": "^1.166.8",
"@tanstack/react-virtual": "^3.13.22",
"@tanstack/router-plugin": "^1.166.7",
"@types/qrcode": "^1.5.6",
"@xmtp/browser-sdk": "^6.5.0",
"@xmtp/notifications-client": "^0.0.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.20",
"dexie": "^4.3.0",
"dexie-react-hooks": "^4.2.0",
"emoji-picker-react": "^4.18.0",
"lucide-react": "^0.577.0",
"nitro": "^3.0.260311-beta",
"pinata": "^2.5.5",
"qrcode": "^1.5.4",
"rate-limiter-flexible": "^9.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"viem": "^2.47.2"
},
"devDependencies": {
"@bufbuild/buf": "^1.66.1",
"@bufbuild/protoc-gen-es": "^2.11.0",
"@tanstack/devtools-vite": "^0.5.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.10.13",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"oxlint-tsgolint": "^0.16.0",
"postcss": "^8.5.8",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"rimraf": "^6.1.3",
"turbo": "^2.8.16",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=24"
},
"packageManager": "yarn@4.12.0"
}