This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.76 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
{
"name": "electron-video-browser",
"description": "Simple Video file browser developed using React and Electron",
"author": "Jean-Baptiste Demonte <[email protected]> (https://jb.demonte.fr)",
"version": "0.1.0",
"license": "ISC",
"main": "main.js",
"scripts": {
"test": "jest",
"start": "electron .",
"clean": "rm -rf .cache output dist",
"ffprobe": "node download_ffprobe.js",
"build": "yarn clean && yarn ffprobe && parcel build app/index.html --no-minify --no-source-maps --public-url ./ --target electron",
"watch": "parcel watch app/index.html --public-url ./ --target electron",
"build-app": "yarn build && electron-builder"
},
"build": {
"appId": "com.github.jbdemonte.electronvideo",
"productName": "Electron Video Browser",
"directories": {
"output": "output"
},
"files": [
"bin/*",
"dist/*",
"node_modules/*",
"main.js"
]
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"antd": "^4.16.3",
"ffbinaries": "^1.1.4",
"flag-icon-css": "^3.5.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"babel-eslint": "^10.1.0",
"electron": "^13.1.2",
"electron-builder": "^22.11.7",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.4",
"parcel-bundler": "^1.12.5",
"regenerator-runtime": "^0.13.7"
}
}