-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
112 lines (112 loc) · 3.22 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
{
"name": "debug-video",
"description": "A debugging tool for HLS and DASH",
"version": "0.1.3",
"license": "MIT",
"private": true,
"author": {
"name": "Garrett Singer",
"email": "[email protected]",
"url": "http://github.com/gesinger"
},
"repository": {
"type": "git",
"url": "https://github.com/gesinger/debug-video.git"
},
"main": "electron/main.js",
"homepage": "./",
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev": "concurrently \"npm start\" \"wait-on http://localhost:3000 && electron --trace-warnings .\"",
"debug": "concurrently \"npm start\" \"wait-on http://localhost:3000 && electron --trace-warnings --inspect .\"",
"build": "npm run build:react && npm run build:electron",
"build:react": "react-scripts build",
"build:electron": "cp -r electron/. build/electron",
"package": "npm run build && npm run package:electron",
"package:electron": "SKIP_NOTARIZE=true electron-builder build --mac -c.extraMetadata.main=build/electron/main.js --publish never",
"postinstall": "electron-builder install-app-deps",
"lint:electron": "eslint electron/**/*.js"
},
"build": {
"appId": "debug.video.app",
"files": [
"build/**/*",
"node_modules/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "build/icon.png",
"hardenedRuntime": true,
"entitlements": "./entitlements.mac.plist",
"entitlementsInherit": "./entitlements.mac.plist"
},
"afterSign": "notarize.js"
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"@reduxjs/toolkit": "^1.7.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@videojs/vhs-utils": "^3.0.5",
"@visx/axis": "^2.6.0",
"@visx/brush": "^2.6.0",
"@visx/event": "^2.6.0",
"@visx/group": "^2.1.0",
"@visx/hierarchy": "^2.1.2",
"@visx/legend": "^2.2.2",
"@visx/pattern": "^2.1.2",
"@visx/responsive": "^2.8.0",
"@visx/scale": "^2.2.2",
"@visx/shape": "^2.4.0",
"@visx/tooltip": "^2.8.0",
"aes-decrypter": "^3.1.3",
"command-exists": "^1.2.9",
"concurrently": "^6.3.0",
"diff": "^5.0.0",
"fix-path": "^3.0.0",
"follow-redirects": "^1.14.9",
"m3u8-parser": "^4.7.1",
"mp4box": "^0.5.2",
"mpd-parser": "^0.21.1",
"mux.js": "^6.0.1",
"parse-xsd-duration": "^0.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-scripts": "5.0.0",
"tar": "^6.1.11",
"wait-on": "^6.0.0",
"web-vitals": "^1.1.2",
"xml2js": "^0.4.23"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.1",
"electron": "^15.3.0",
"electron-builder": "^22.13.1",
"electron-notarize": "^1.2.1",
"eslint": "^8.14.0",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.10"
}
}