-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.84 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
{
"name": "tone-analyzer",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Cross-platform CVSA & Emotion Detection App",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"test": "vitest run",
"preview": "vite preview",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "vite build && electron-builder",
"ios:sync": "cap sync ios",
"ios:open": "cap open ios"
},
"dependencies": {
"@capacitor/camera": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/filesystem": "^6.0.0",
"@tensorflow/tfjs": "^4.19.0",
"@vladmandic/face-api": "^1.7.13",
"dexie": "^4.0.4",
"jspdf": "^4.1.0",
"papaparse": "^5.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"recharts": "^2.12.7",
"zustand": "^4.5.2"
},
"devDependencies": {
"@capacitor/cli": "^8.1.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"electron": "^40.4.0",
"electron-builder": "^26.7.0",
"jsdom": "^27.0.1",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^3.2.7",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.toneanalyzer.app",
"productName": "ToneAnalyzer",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"electron/**/*.js",
"public/**/*"
],
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
}
}
}