forked from colinmreed/community-microfreak-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·85 lines (85 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·85 lines (85 loc) · 2.06 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
{
"name": "microfreak-web",
"version": "2.5.0",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"detect-browser": "^4.7.0",
"lz-string": "^1.4.4",
"mobx": "^5.14.0",
"mobx-react": "^6.1.3",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-helmet": "^5.2.1",
"react-scripts": "3.2.0",
"react-switch": "^5.0.1",
"storejs": "^1.0.25",
"webmidi": "^2.5.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron": "electron .",
"electron-dev": "concurrently \"npm start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-pack": "npm run build && electron-builder",
"dist": "npm run build && electron-builder --publish=never",
"deploy": "./deploy.sh",
"deploy:dry": "./deploy.sh --dry-run"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^9.1.2",
"electron": "^36.4.0",
"electron-builder": "^26.0.12",
"electron-is-dev": "^3.0.1",
"wait-on": "^8.0.3"
},
"build": {
"appId": "com.community.microfreak-reader",
"productName": "MicroFreak Reader Community Edition",
"directories": {
"output": "dist"
},
"files": [
"build/**/*",
"public/electron.js",
"node_modules/**/*"
],
"mac": {
"category": "public.app-category.music",
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
}
]
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
}
}