-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.4 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
{
"name": "mediaportal",
"description": "Portal for media",
"author": "desko27",
"version": "2.6.2",
"private": true,
"main": "build/main/index.js",
"scripts": {
"react:dev": "vite",
"react:build": "vite build",
"electron:dev": "npm run electron:tsc && electron . --allow-file-access-from-files",
"electron:tsc": "npx swc src/main -d build",
"electron:build": "npm run electron:tsc && electron-builder --mac --win",
"electron:build:debug": "npm run electron:tsc && electron-builder --mac -c electron-builder.debug.json",
"build": "npm run react:build && npm run electron:build",
"build:debug": "npm run react:build && npm run electron:build:debug",
"launch": "open build/dist/mac/mediaportal.app",
"launch:debug": "lldb build/dist/mac/mediaportal.app --one-line \"run --debug-mode\"",
"start": "npm run dev",
"dev": "concurrently \"npm run dev:react\" \"npm run dev:electron\"",
"dev:debug": "concurrently \"npm run dev:react\" \"npm run dev:electron -- --debug-mode\"",
"dev:react": "cross-env BROWSER=none npm run react:dev --",
"dev:electron": "npm run dev:await-react && npm run electron:dev --",
"dev:await-react": "wait-on -c wait-on.config.json http-get://localhost:3000",
"lint": "npx ts-standard",
"test": "npx tsc --noEmit",
"bump": "npm version minor -m \"Bump version: %s\"",
"bump:patch": "npm version patch -m \"Bump version: %s\"",
"phoenix": "rm -rf ./node_modules && npm install",
"prepare": "husky install"
},
"dependencies": {
"clsx": "1.1.1",
"cross-env": "7.0.3",
"electron-is-dev": "2.0.0",
"electron-log": "4.4.6",
"i18next": "21.6.16",
"react": "18.0.0",
"react-beautiful-dnd": "13.1.0",
"react-dom": "18.0.0",
"react-dropzone": "12.0.5",
"react-i18next": "11.16.6",
"react-router-dom": "6.3.0"
},
"devDependencies": {
"@swc/cli": "0.1.57",
"@swc/core": "1.2.165",
"@types/react-beautiful-dnd": "13.1.2",
"@types/react-dom": "18.0.0",
"@vitejs/plugin-react": "1.3.0",
"concurrently": "7.1.0",
"electron": "18.0.3",
"electron-builder": "23.0.3",
"husky": "7.0.4",
"ts-standard": "11.0.0",
"typescript": "4.6.3",
"typescript-plugin-css-modules": "3.4.0",
"vite": "2.9.1",
"vite-plugin-svgr": "1.1.0",
"vite-tsconfig-paths": "3.4.1",
"wait-on": "6.0.1"
},
"engines": {
"node": "16",
"npm": ">=7"
}
}