-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.35 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.35 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
{
"name": "bp-mixer-control",
"version": "1.0.0",
"author": "Atom Software Studios, s.r.o.",
"license": "MIT",
"description": "Behringer X Touch to PreSonus StudioLive 24R Bridge",
"keywords": [],
"private": false,
"main": "./dist/main.js",
"scripts": {
"dev": "npm-run-all --parallel dev:react electron:serve",
"dev:electron": "cross-env NODE_ENV=development webpack --config webpack/electron.webpack.ts --mode=development --watch",
"dev:react": "cross-env NODE_ENV=development webpack serve --config webpack/react.webpack.ts --mode=development",
"electron:serve": "wait-on http-get://localhost:4000/ && npm run dev:electron",
"start:electron": "electron .",
"build": "npm-run-all build:electron build:react",
"build:run": "npm-run-all build start:electron",
"build:electron": "webpack --config webpack/electron.webpack.ts --mode=production",
"build:react": "webpack --config webpack/react.webpack.ts --mode=production",
"package": "npm-run-all build package:dist",
"package:dist": "electron-builder --dir"
},
"dependencies": {
"midi": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/electron": "^1.6.10",
"@types/midi": "^2.0.0",
"@types/node": "^16.11.45",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"electron": "^19.0.8",
"electron-builder": "^23.3.2",
"electron-rebuild": "^3.2.9",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.1",
"html-webpack-plugin": "^5.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"wait-on": "^6.0.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"build": {
"appId": "com.company.app",
"productName": "BP-Mixer-Control",
"mac": {
"category": "public.app-category.video"
},
"directories": {
"output": "packages"
},
"files": [
"package.json",
"dist/**"
]
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.13.0"
}
}