-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 4.3 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"license": "CC0-1.0",
"name": "emp",
"version": "0.8.9",
"private": true,
"description": "Electron Music Player",
"author": "Kevin Frei <kevinfrei@hotmail.com>",
"main": "dist-electron/main.js",
"homepage": "./",
"workspaces": [
"modules/*"
],
"scripts": {
"clean": "rimraf public/main public/*.js build dist",
"testui": "jest --config config/jest.jsdom.js --watch",
"testnode": "jest --config config/jest.node.js --watch",
"justtest": "jest --config config/jest.jsdom.js && jest --pass-with-no-tests --config config/jest.node.js",
"format": "ftool format",
"lint": "yarn eslint --fix ./src ./electron ./renderer",
"linecount": "ftool linecount .css .ts .tsx .html -__ -.d.ts",
"postinstall": "husky install",
"typecheck": "tsc --noEmit",
"test": "yarn typecheck && yarn lint && yarn justtest",
"verbump": "node config/set-version.js",
"bumpver": "node config/set-version.js",
"dev": "vite",
"devbld": "npx lerna run build && vite",
"build": "npx lerna run build && tsc && vite build && electron-builder",
"preview": "vite preview",
"lerna": "npx lerna run",
"lerna-build": "npx lerna run build",
"hook-commit": "ftool format",
"hook-push": "yarn test",
"client-deps": "yarn madge --image client-deps.svg src/main.tsx",
"server-deps": "yarn madge --image server-deps.svg electron/main.ts"
},
"dependencies": {
"@fluentui/react": "^8.120.7",
"@fluentui/react-components": "^9.54.13",
"@fluentui/react-icons-mdl2": "^1.3.75",
"@freik/audiodb": "^0.8.3",
"@freik/containers": "^0.2.17",
"@freik/electron-main": "^0.1.0",
"@freik/electron-preload": "^0.1.0",
"@freik/electron-render": "^0.1.0",
"@freik/emp-shared": "^0.0.6",
"@freik/helpers": "^0.3.16",
"@freik/logger": "^0.2.15",
"@freik/media-core": "^0.14.16",
"@freik/media-utils": "^0.19.10",
"@freik/node-utils": "^1.6.7",
"@freik/p-limit": "^5.0.0",
"@freik/sync": "^0.2.16",
"@freik/text": "^0.3.15",
"@freik/typechk": "^0.6.4",
"@freik/web-utils": "^0.5.2",
"album-art": "^4.0.0",
"jimp": "^0.22.12",
"jotai": "^2.9.3",
"open": "^10.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recoil": "^0.7.7",
"rimraf": "^6.0.1",
"xxhashjs": "^0.2.2"
},
"browserslist": {
"production": [
"last 1 chrome version"
],
"development": [
"last 1 chrome version"
]
},
"madge": {
"fontSize": "12px",
"excludeRegExp": [
".css$",
".d.ts$"
],
"layout": "dot",
"graphVizOptions": {
"G": {
"rankdir": "LR",
"concentrate": true,
"pack": true,
"packmode": "node"
}
}
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@freik/build-tools": "^3.6.11",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/debug": "^4.1.12",
"@types/electron-devtools-installer": "^2.2.5",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.1",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/react-test-renderer": "^18.3.0",
"@types/xxhashjs": "^0.2.4",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitejs/plugin-react": "^4.3.1",
"cross-env": "^7.0.3",
"electron": "^32.0.1",
"electron-builder": "^24.13.3",
"electron-devtools-installer": "^3.2.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-css": "^6.0.1",
"lerna": "^8.1.8",
"madge": "^8.0.0",
"postcss": "8.4.41",
"prettier": "^3.3.3",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.3.1",
"svg-react-loader": "^0.4.6",
"tree-kill": "^1.2.2",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.2",
"vite-plugin-electron": "^0.28.7",
"vite-plugin-electron-renderer": "^0.14.5"
},
"packageManager": "yarn@4.4.1"
}