-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.65 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
{
"name": "samebase-base",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"type": "module",
"imports": {
"#components/*": "./src/components/*.tsx",
"#lib/*": "./src/lib/*.ts",
"#hooks/*": "./src/hooks/*.ts"
},
"scripts": {
"dev": "node ./scripts/run-context-dev.ts",
"dev:primary": "node ./scripts/run-primary-dev.ts",
"dev:frontend": "vp dev",
"dev:worktree": "node ./scripts/run-worktree-dev.ts",
"check": "vp check && vp run typecheck && vp test && vp run verify:cloudflare-redirects && vp run verify:dev-launcher-version",
"build": "vp run build:cloudflare",
"build:app": "vp run check && vp build",
"build:cloudflare": "node ./scripts/build-cloudflare.ts",
"deploy": "node ./scripts/deploy-cloudflare.ts deploy",
"deploy:preview": "node ./scripts/deploy-cloudflare.ts preview",
"deploy:dry-run": "node ./scripts/deploy-cloudflare.ts deploy --dry-run",
"deploy:preview:dry-run": "node ./scripts/deploy-cloudflare.ts preview --dry-run",
"format": "vp fmt",
"format:check": "vp fmt --check",
"generate:cloudflare-redirects": "node ./scripts/generate-cloudflare-redirects.ts",
"generate:dev-launcher-version": "node ./scripts/generate-dev-launcher-version.ts --write",
"lint": "vp lint --report-unused-disable-directives",
"preview": "vp preview",
"prepare": "vp config --no-agent",
"test": "vp test",
"typecheck": "tsc && vp run typecheck:node && tsc --project convex/tsconfig.json",
"typecheck:node": "tsc --project tsconfig.node.json",
"verify:cloudflare-redirects": "vp run generate:cloudflare-redirects && git diff --exit-code -- public/_redirects",
"verify:dev-launcher-version": "node ./scripts/generate-dev-launcher-version.ts"
},
"dependencies": {
"@auth/core": "0.41.3",
"@convex-dev/auth": "^0.0.94",
"@tailwindcss/vite": "^4.3.0",
"@tanstack/react-router": "^1.170.18",
"@tanstack/react-start": "^1.168.34",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.45.0",
"lucide-react": "^1.14.0",
"qrcode.react": "^4.2.0",
"radix-ui": "^1.4.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@tanstack/router-plugin": "^1.168.23",
"@types/node": "^24.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"shadcn": "^4.16.1",
"typescript": "~6.0.2",
"vite": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:",
"wrangler": "^4.118.0"
},
"packageManager": "pnpm@11.1.1"
}