forked from Featherless-Biped/scichart-ecg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 916 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
30
{
"name": "tauri-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"copySciChartWasmData": "copy-files-from-to --config copy-files-from-to.json",
"dev": "npm run copySciChartWasmData && vite",
"build": "npm run copySciChartWasmData && tsc && vite build",
"preview": "npm run copySciChartWasmData && vite preview",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^1.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.64.1",
"scichart": "^3.2.434",
"scss": "^0.2.4"
},
"devDependencies": {
"@tauri-apps/cli": "^1.4.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"copy-files-from-to": "^3.9.0",
"typescript": "^5.0.2",
"vite": "^4.4.4"
}
}