-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
48 lines (48 loc) · 1.91 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
{
"name": "AOMAnalyzer",
"version": "1.0.0",
"description": "AOM/VP9 Bitstream Analyzer",
"main": "index.js",
"scripts": {
"build": "webpack --config config/webpack.config.js",
"build-watch": "webpack --watch --config config/webpack.config.js",
"build-debug": "webpack --display-reasons --progress --config config/webpack.config.js",
"build-release": "webpack -p --config config/webpack.config.js",
"package-darwin": "electron-packager . --platform=darwin --arch=x64 --electron-version=2.0.8 --overwrite --icon=vomit.icns --out=release_builds --tmpdir=/tmp",
"package-linux": "electron-packager . --platform=linux --arch=x64 --electron-version=2.0.8 --overwrite --out=release_builds --tmpdir=/tmp",
"package-win32": "electron-packager . --platform=win32 --arch=x64 --electron-version=2.0.8 --overwrite --out=release_builds --tmpdir=/tmp",
"check-lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"lint": "eslint \"src/**/*.{js,ts,tsx}\" --quiet --fix"
},
"author": "Michael Bebenita",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.17.3",
"@types/react": "^16.14.8",
"@types/react-dom": "^16.9.13",
"@types/react-transition-group": "4.4.0",
"electron-packager": "^14.0.2",
"ts-loader": "^2.0.3",
"typescript": "^4.2.4",
"webpack": "^2.3.3"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"argparse": "^1.0.9",
"electron": "^5.0.7",
"electron-packager-dummy-wine": "^1.0.2",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"file-saver": "^1.3.3",
"prettier": "^2.3.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-input-autosize": "1.1.0",
"react-select": "1.0.0-rc.10"
}
}