-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.88 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
{
"name": "spotbar",
"version": "1.0.0",
"description": "Control Spotify running on every device through your macOS/Windows/Linux menu bar!",
"main": "./out/main/index.js",
"author": "levar",
"scripts": {
"format": "prettier --write .",
"lint": "eslint ./src --ext .js,.ts,.tsx,.jsx",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config",
"build:mac": "electron-vite build && electron-builder --mac --config",
"build:linux": "electron-vite build && electron-builder --linux --config"
},
"dependencies": {
"@electron-toolkit/preload": "^1.0.3",
"@electron-toolkit/utils": "^1.0.2",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@radix-ui/react-form": "^0.0.2",
"@radix-ui/react-progress": "^1.0.2",
"@react-buddy/ide-toolbox": "^2.3.1",
"@reduxjs/toolkit": "^1.9.5",
"auto-launch": "^5.0.5",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"electron-traywindow-positioner": "^1.1.1",
"express": "^4.18.2",
"extract-colors": "^3.0.0",
"framer-motion": "^10.12.10",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"naudiodon": "^2.3.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.11.1",
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/notarize": "^1.2.3",
"@types/auto-launch": "^5.0.2",
"@types/axios": "^0.14.0",
"@types/electron": "^1.6.10",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.194",
"@types/moment": "^2.13.0",
"@types/naudiodon": "^2.2.5",
"@types/node": "20.1.2",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@types/recharts": "^1.8.24",
"@types/spotify-web-api-node": "^5.0.7",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"electron": "^24.3.0",
"electron-builder": "^23.6.0",
"electron-vite": "^1.0.22",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.32.2",
"postcss": "^8.4.23",
"postcss-import": "^15.1.0",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4",
"vite": "^4.3.5",
"vite-plugin-eslint": "^1.8.1"
},
"mac": {
"extendInfo": {
"LSUIElement": "true"
}
}
}