-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.82 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
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
{
"name": "chill-airwaves",
"productName": "chill-airwaves",
"version": "1.0.0",
"description": "My Electron application description",
"main": ".vite/build/main.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx ."
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-react": "^7.24.7",
"@electron-forge/cli": "^7.4.0",
"@electron-forge/maker-deb": "^7.4.0",
"@electron-forge/maker-rpm": "^7.4.0",
"@electron-forge/maker-squirrel": "^7.4.0",
"@electron-forge/maker-zip": "^7.4.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.4.0",
"@electron-forge/plugin-fuses": "^7.4.0",
"@electron-forge/plugin-vite": "^7.4.0",
"@electron/fuses": "^1.8.0",
"@redux-devtools/extension": "^3.3.0",
"@types/electron": "^1.6.10",
"@types/ffmpeg": "^1.0.7",
"@types/fluent-ffmpeg": "^2.1.26",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.5",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/redux-persist": "^4.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"ajv": "^8.17.1",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.1.3",
"electron": "32.0.1",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.25.0",
"postcss": "^8.4.45",
"sass": "^1.79.4",
"tailwindcss": "^3.4.10",
"ts-node": "^10.0.0",
"typescript": "~4.5.4",
"vite": "^5.0.12",
"@types/animejs": "^3.1.12",
"@types/cheerio": "^0.22.35",
"@types/electron-store": "^3.2.0"
},
"keywords": [],
"author": {
"name": "Sergey",
"email": "iserg.junk@gmail.com"
},
"license": "MIT",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffmpeg/ffmpeg": "^0.12.10",
"@phosphor-icons/react": "^2.1.7",
"@react-oauth/google": "^0.12.1",
"@reduxjs/toolkit": "^2.2.7",
"animate.css": "^4.1.1",
"animejs": "^3.2.2",
"audiomotion-analyzer": "^4.5.0",
"axios": "^1.7.7",
"cheerio": "^1.0.0",
"dotenv": "^16.4.5",
"easytimer-react-hook": "^2.1.0",
"electron-squirrel-startup": "^1.0.1",
"electron-store": "^10.0.0",
"fluent-ffmpeg": "^2.1.3",
"framer-motion": "^11.11.8",
"fs-extra": "^11.2.0",
"node-fetch": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.27.0",
"redux-persist": "^6.0.0",
"uuid": "^10.0.0"
},
"extraResources": [
{
"from": "node_modules/@ffmpeg-installer/ffmpeg/bin",
"to": "ffmpeg",
"filter": [
"**/*"
]
}
]
}