-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.17 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
{
"name": "shooting-planner-v2",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev:sidecar": "cd sidecar && pnpm dev",
"dev:all": "concurrently \"pnpm dev\" \"pnpm dev:sidecar\"",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "concurrently \"pnpm dev:sidecar\" \"tauri dev\"",
"tauri:build": "cd sidecar && pnpm build && cd .. && tauri build",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"check": "biome check --write .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"bdd:gen": "bddgen -c playwright-bdd.config.ts",
"bdd:test": "pnpm bdd:gen && playwright test -c playwright-bdd.config.ts",
"bdd:smoke": "bddgen -c playwright-bdd.config.ts --tags \"@smoke and not @wip\" && playwright test -c playwright-bdd.config.ts",
"bdd:phase23": "bddgen -c playwright-bdd.config.ts --tags \"(@phase2 or @phase3) and not @wip\" && playwright test -c playwright-bdd.config.ts",
"bdd:phase6": "bddgen -c playwright-bdd.config.ts --tags \"@phase6 and not @wip\" && playwright test -c playwright-bdd.config.ts",
"bdd:phase7": "bddgen -c playwright-bdd.config.ts --tags \"@phase7 and not @wip\" && playwright test -c playwright-bdd.config.ts",
"bdd:pr-gate": "bddgen -c playwright-bdd.config.ts --tags \"not @wip\" && playwright test -c playwright-bdd.config.ts",
"bdd:export": "bddgen export -c playwright-bdd.config.ts",
"bdd:report": "playwright show-report",
"typecheck": "tsc --noEmit",
"validate": "pnpm typecheck && pnpm lint"
},
"engines": {
"node": "25.x"
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@tailwindcss/vite": "^4.2.0",
"@tanstack/react-hotkeys": "^0.1.3",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-router": "^1.161.3",
"@tanstack/router-plugin": "^1.161.3",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-shell": "^2.3.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.34.2",
"lucide-react": "^0.575.0",
"pptxgenjs": "^4.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-mentions": "^4.4.10",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.3",
"@playwright/test": "^1.58.2",
"@tauri-apps/cli": "^2.10.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-mentions": "^4.4.1",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/ui": "^4.0.18",
"concurrently": "^9.2.1",
"jsdom": "^28.1.0",
"playwright-bdd": "^8.4.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "8.0.0-beta.15",
"vitest": "^4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}