-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.2 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
{
"name": "costa",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri dev",
"debug": "RUST_BACKTRACE=full tauri dev",
"build-dbg-app-arm64": "tauri build --target aarch64-apple-darwin --debug",
"build-dbg-app-x64": "tauri build --target x86_64-apple-darwin --debug",
"build-app-arm64": "tauri build --target aarch64-apple-darwin",
"build-app-x64": "tauri build --target x86_64-apple-darwin"
},
"dependencies": {
"@arco-design/web-react": "^2.64.0",
"@monaco-editor/react": "^4.6.0",
"@tauri-apps/api": "1",
"ahooks": "^3.8.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.27.0",
"tauri-plugin-clipboard-api": "^2.1.6",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store#v1"
},
"devDependencies": {
"@arco-plugins/vite-react": "^1.3.3",
"@tauri-apps/cli": "^1",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.2.1",
"less": "^4.2.0",
"typescript": "^5.0.2",
"vite": "^5.0.0"
}
}