-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 879 Bytes
/
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
{
"name": "tauri-fable-elmish",
"private": true,
"version": "0.1.0",
"type": "module",
"packageManager": "[email protected]+sha256.fc4a49bd609550a41e14d20efbce802a4b892aa4cac877322de2f0924f122991",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"scripts": {
"dev": "dotnet fable watch ./src -e .jsx --sourceMaps --configuration Debug --run vite --mode development",
"build": "dotnet fable ./src -e .jsx --noCache --configuration Release --define FABLE_COMPILER --run vite build --mode production",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^1.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"use-sync-external-store": "^1.2.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.10",
"@vitejs/plugin-react": "^4.2.1",
"remotedev": "^0.2.9",
"vite": "^5.1.3"
}
}