-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.45 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "manavault",
"version": "1.3.0",
"private": true,
"description": "ManaVault Phoenix application with Capacitor native shell tooling.",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "vp lint",
"precommit": "mix compile --warnings-as-errors && mix credo --strict && mix test && aube exec vp fmt --check && aube run lint && aube run typecheck && aube run test:react && aube run build",
"format": "vp fmt",
"typecheck": "tsc --project assets/tsconfig.json --noEmit",
"test:react": "node --test assets/react/test/*.test.mjs && vitest run --config vitest.config.ts",
"codegen": "graphql-codegen --config codegen.ts",
"native:prepare": "node scripts/prepare-native-web.mjs",
"cap:sync": "aube run native:prepare && cap sync",
"cap:sync:android": "aube run native:prepare && cap sync android",
"cap:sync:ios": "aube run native:prepare && cap sync ios",
"cap:open:android": "cap open android",
"cap:open:ios": "cap open ios",
"cap:run:android": "aube run cap:sync:android && cap run android",
"cap:run:ios": "aube run cap:sync:ios && cap run ios",
"android:build:debug": "aube run cap:sync:android && ./android/gradlew -p android assembleDebug",
"android:build:release": "aube run cap:sync:android && ./android/gradlew -p android assembleRelease",
"android:signing:setup": "node scripts/create-android-keystore.mjs"
},
"dependencies": {
"@absinthe/socket": "^0.2.1",
"@apollo/client": "^4.2.10",
"@capacitor/android": "^8.5.0",
"@capacitor/app": "^8.1.1",
"@capacitor/core": "^8.5.0",
"@capacitor/filesystem": "^8.1.2",
"@capacitor/ios": "^8.5.0",
"@capacitor/status-bar": "^8.0.3",
"@graphql-codegen/cli": "^7.2.0",
"@graphql-codegen/client-preset": "^6.1.2",
"@graphql-typed-document-node/core": "^3.2.0",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-hover-card": "^1.1.23",
"@radix-ui/react-popover": "^1.1.23",
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-slot": "^1.3.3",
"@radix-ui/react-switch": "^1.3.7",
"@radix-ui/react-tabs": "^1.1.21",
"@radix-ui/react-toast": "^1.2.23",
"@radix-ui/react-toggle-group": "^1.1.19",
"@tanstack/react-router": "^1.170.23",
"@tanstack/router-plugin": "^1.168.27",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@use-gesture/react": "^10.3.1",
"@vitejs/plugin-react": "^6.0.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"es-toolkit": "^1.50.0",
"graphql": "^17.0.2",
"katex": "^0.16.47",
"lucide-react": "^1.30.0",
"motion": "^12.43.0",
"ogl": "^1.0.11",
"phoenix": "^1.8.13",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"vite": "^8.2.1",
"vite-plus": "^0.2.8"
},
"devDependencies": {
"@capacitor/cli": "^8.5.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.3",
"@types/phoenix": "^1.6.7",
"@voidzero-dev/vite-plus-core": "^0.2.8",
"jsdom": "^29.1.1",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"overrides": {
"brace-expansion": "5.0.9",
"js-yaml": "4.3.1",
"tar": "7.5.22",
"undici": "7.29.0",
"uuid": "11.1.1"
}
}