-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.92 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
94
95
96
{
"name": "mandy",
"version": "1.2.0",
"description": "",
"license": "MIT",
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"tauri": "tauri",
"icons": "bun run scripts/prep-mandy-icon.mjs && cd src-tauri && bunx tauri icon mandy-icon-tauri.png",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt --check .",
"format:fix": "oxfmt --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:rust": "cargo test --manifest-path src-tauri/Cargo.toml",
"verify:glib": "bash scripts/verify-glib-patch.sh",
"test:e2e": "playwright test --config e2e/playwright.config.ts",
"test:e2e:ui": "playwright test --config e2e/playwright.config.ts --ui",
"test:desktop": "node e2e-desktop/run.mjs",
"test:all": "bun run verify:glib && bun run test && bun run test:rust && bun run test:e2e",
"prepare": "husky"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.12.1",
"@codemirror/legacy-modes": "^6.5.2",
"@codemirror/lint": "^6.9.2",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.11",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@lezer/highlight": "^1.2.3",
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"@vx/curve": "^0.0.199",
"@vx/vx": "^0.0.199",
"@xyflow/react": "^12.10.0",
"cm6-graphql": "^0.2.1",
"graphql": "^16.13.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-window": "^2.2.5",
"ses": "^1.14.0",
"tauri-plugin-macos-haptics-api": "^1.0.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tauri-apps/cli": "^2.11.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/coverage-v8": "^4.1.7",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"selenium-webdriver": "^4.40.0",
"typescript": "~5.8.3",
"vite": "^7.3.3",
"vitest": "^4.1.7"
},
"overrides": {
"d3-color": "^3.1.0",
"picomatch": "^4.0.4",
"postcss": "^8.5.10",
"rollup": "^4.59.0"
}
}