-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.64 KB
/
package.json
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
{
"name": "patchman",
"private": true,
"version": "0.1.0",
"license": "MIT",
"type": "module",
"prettier": {
"printWidth": 120,
"quoteProps": "consistent",
"arrowParens": "always",
"singleQuote": false
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.3",
"@codemirror/commands": "^6.7.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.1.1",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-xml": "^6.0.1",
"@codemirror/language": "^6.10.6",
"@codemirror/state": "^6.1.2",
"@codemirror/theme-one-dark": "^6.1.0",
"@codemirror/view": "^6.4.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/ubuntu": "^5.1.0",
"@fontsource/ubuntu-mono": "^5.1.0",
"@mui/icons-material": "^6.2.0",
"@mui/material": "^6.2.0",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-clipboard-manager": "^2.2.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-global-shortcut": "^2.2.0",
"@tauri-apps/plugin-http": "^2.2.0",
"@tauri-apps/plugin-notification": "^2.2.0",
"@tauri-apps/plugin-os": "^2.2.0",
"@tauri-apps/plugin-process": "^2.2.0",
"@tauri-apps/plugin-shell": "^2.2.0",
"@uiw/codemirror-extensions-basic-setup": "^4.23.7",
"@uiw/codemirror-theme-androidstudio": "^4.23.7",
"@uiw/codemirror-theme-github": "^4.23.7",
"@uiw/codemirror-themes": "^4.23.7",
"@uiw/react-codemirror": "^4.23.7",
"codemirror": "^6.0.1",
"i18next": "^24.1.0",
"jotai": "^2.10.4",
"nanoid": "^5.0.9",
"prismjs": "^1.29.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.2.0",
"react-resizable": "^3.0.4",
"react-router": "^7.0.2",
"react-router-dom": "^7.0.2",
"react-simple-code-editor": "^0.14.1",
"react-split": "^2.0.14",
"yup": "^1.6.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.1.0",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.2",
"@types/prismjs": "^1.26.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/react-resizable": "^3.0.3",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
}
}