-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 4.34 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 4.34 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "ispeakerreact",
"author": "LearnerCraft Labs",
"description": "An English-learning interactive tool written in React, designed to help learners practice speaking and listening",
"private": true,
"version": "3.5.0",
"type": "module",
"main": "main.js",
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
"build": "vite build && node scripts/minify-dist-jsons.js",
"lint": "eslint .",
"preview": "vite preview",
"start": "concurrently \"cross-env NODE_ENV=development vite\" \"wait-on http://localhost:5173 && cross-env NODE_ENV=development electron .\"",
"package": "vite build --mode electron && node scripts/minify-dist-jsons.js && electron-forge package",
"make": "vite build --mode electron && node scripts/minify-dist-jsons.js && electron-forge make",
"vitebuildcli": "vite build --mode electron && node scripts/minify-dist-jsons.js",
"makecli": "electron-forge make",
"appx": "vite build --mode electron && node scripts/minify-dist-jsons.js && electron-forge package && cd ./out && electron-windows-store --input-directory ./iSpeakerReact-win32-x64 --output-directory ./ispeakerreact-appx --package-version ${npm_package_version}.0 --package-name ispeakerreact-x64 --assets ../public/images/icons/windows11 -m ./appxmanifest.xml",
"appxarm": "vite build --mode electron && node scripts/minify-dist-jsons.js && electron-forge package --arch=arm64 && cd ./out && electron-windows-store --input-directory ./iSpeakerReact-win32-arm64 --output-directory ./ispeakerreact-appx --package-version ${npm_package_version}.0 --package-name ispeakerreact-arm64 --assets ../public/images/icons/windows11 -m ./appxmanifestARM.xml"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@fix-webm-duration/fix": "^1.0.1",
"cors": "^2.8.5",
"electron-conf": "^1.3.0",
"electron-log": "^5.4.0",
"electron-squirrel-startup": "^1.0.1",
"express": "^5.2.1",
"express-rate-limit": "^7.5.0",
"fkill": "^9.0.0",
"js7z-tools": "^2.4.1",
"masonry-layout": "^4.2.2",
"mime": "^4.0.7"
},
"devDependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@electron-forge/cli": "^7.8.1",
"@electron-forge/maker-deb": "^7.8.1",
"@electron-forge/maker-dmg": "^7.8.1",
"@electron-forge/maker-rpm": "^7.8.1",
"@electron-forge/maker-squirrel": "^7.8.1",
"@electron-forge/maker-zip": "^7.8.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.8.1",
"@electron-forge/plugin-fuses": "^7.8.1",
"@electron/fuses": "^1.8.0",
"@eslint/js": "^9.27.0",
"@tailwindcss/postcss": "^4.1.7",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.7",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.5",
"@vidstack/react": "^1.12.13",
"@vitejs/plugin-react": "^4.5.0",
"@vitejs/plugin-react-swc": "^3.10.0",
"@wavesurfer/react": "^1.0.11",
"autoprefixer": "^10.4.21",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"daisyui": "^5.0.37",
"dexie": "^4.0.11",
"electron": "^41.4.0",
"eslint": "^9.27.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^6.0.0-rc.1",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.1.0",
"he": "^1.2.0",
"i18next": "^25.2.0",
"i18next-browser-languagedetector": "^8.1.0",
"i18next-http-backend": "^3.0.5",
"lodash": "^4.18.1",
"postcss": "^8.5.13",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-flip-toolkit": "^7.2.4",
"react-i18next": "^15.5.2",
"react-icons": "^5.5.0",
"react-loading-skeleton": "^3.5.0",
"react-router-dom": "^7.14.2",
"rollup-plugin-visualizer": "^6.0.0",
"sonner": "^2.0.3",
"tailwindcss": "^4.1.7",
"vidstack": "^1.12.12",
"vite": "^6.4.2",
"vite-plugin-pwa": "^1.0.0",
"wait-on": "^8.0.3",
"wavesurfer.js": "^7.9.5"
},
"optionalDependencies": {
"appdmg": "latest"
}
}