-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
80 lines (80 loc) · 2.24 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
{
"author": "Daniel Wade",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"build": {
"extraResources": [
"./resources/app",
"./resources/app.debug",
"./resources/mkvtoolnix",
"./resources/modules",
"./resources/__init__.py"
]
},
"dependencies": {
"axios": "0.21.1",
"electron-is-dev": "1.2.0",
"get-port": "5.1.1",
"socket.io-client": "2.3.1"
},
"description": "MKVToolNix batch processing tool",
"devDependencies": {
"@fluentui/react": "7.160.1",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.3.2",
"@testing-library/user-event": "7.1.2",
"babel-eslint": "10.1.0",
"cross-env": "7.0.3",
"electron": "10.1.3",
"electron-installer-dmg": "3.0.0",
"electron-packager": "15.0.0",
"electron-wix-msi": "5.0.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-standard": "5.0.0",
"exe-icon-extractor": "1.0.8",
"jsdoc": "3.6.5",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-scripts": "3.4.1",
"sass": "1.26.5"
},
"eslintConfig": {
"extends": "react-app"
},
"homepage": "./",
"license": "MIT",
"main": "main.js",
"name": "mkvtoolnix-batch-tool",
"private": true,
"productName": "MKVToolNix Batch Tool",
"scripts": {
"build": "node ./scripts/dispatch build all",
"build:all": "node ./scripts/dispatch build all",
"build:react": "node ./scripts/dispatch build react",
"build:python": "node ./scripts/dispatch build python",
"build:docs": "jsdoc -c jsdoc.json",
"build:package:mac": "node ./scripts/dispatch package mac",
"build:package:windows": "node ./scripts/dispatch package windows",
"clean": "node ./scripts/dispatch clean",
"eject": "react-scripts eject",
"start": "node ./scripts/dispatch start",
"start:electron": "electron .",
"start:react": "react-scripts start",
"test": "react-scripts test"
},
"version": "2.5.4"
}