2020-05-31 11:47:57 +00:00
|
|
|
{
|
2020-06-09 18:10:26 +00:00
|
|
|
"name": "openmediacenter",
|
2020-11-20 21:00:09 +00:00
|
|
|
"version": "0.1.2",
|
2020-05-31 11:47:57 +00:00
|
|
|
"private": true,
|
2020-12-17 20:53:22 +00:00
|
|
|
"main": "public/electron.js",
|
|
|
|
"author": {
|
|
|
|
"email": "lukas.heiligenbrunner@gmail.com",
|
|
|
|
"name": "Lukas Heiligenbrunner",
|
|
|
|
"url": "https://heili.eu"
|
|
|
|
},
|
2020-05-31 11:47:57 +00:00
|
|
|
"dependencies": {
|
2020-11-27 22:43:12 +00:00
|
|
|
"@fortawesome/fontawesome-svg-core": "^1.2.32",
|
2020-10-19 21:12:07 +00:00
|
|
|
"@fortawesome/free-regular-svg-icons": "^5.15.1",
|
|
|
|
"@fortawesome/free-solid-svg-icons": "^5.15.1",
|
2020-11-27 22:43:12 +00:00
|
|
|
"@fortawesome/react-fontawesome": "^0.1.13",
|
2020-10-19 21:12:07 +00:00
|
|
|
"bootstrap": "^4.5.3",
|
2020-11-27 22:43:12 +00:00
|
|
|
"plyr-react": "^3.0.7",
|
|
|
|
"react": "^17.0.1",
|
2020-10-25 18:48:23 +00:00
|
|
|
"react-bootstrap": "^1.4.0",
|
2020-12-17 20:53:22 +00:00
|
|
|
"react-dom": "^17.0.1",
|
|
|
|
"typescript": "^4.1.3"
|
2020-05-31 11:47:57 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"start": "react-scripts start",
|
|
|
|
"build": "react-scripts build",
|
2020-10-25 18:48:23 +00:00
|
|
|
"test": "react-scripts test --reporters=jest-junit --reporters=default",
|
2020-06-09 18:10:26 +00:00
|
|
|
"coverage": "react-scripts test --coverage --watchAll=false",
|
2020-12-17 20:53:22 +00:00
|
|
|
"eject": "react-scripts eject",
|
|
|
|
"buildlinux": "node build.js --linux",
|
|
|
|
"buildwin": "node build.js --win",
|
|
|
|
"electron-dev": "electron ."
|
|
|
|
},
|
|
|
|
"build": {
|
|
|
|
"appId": "com.heili.openmediacenter",
|
|
|
|
"files": [
|
|
|
|
"build/**/*"
|
|
|
|
],
|
|
|
|
"directories": {
|
|
|
|
"buildResources": "assets"
|
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"target": ["rpm","deb","snap","AppImage"]
|
|
|
|
},
|
|
|
|
"win": {
|
|
|
|
"target": ["nsis"]
|
|
|
|
}
|
2020-05-31 11:47:57 +00:00
|
|
|
},
|
2020-06-09 18:10:26 +00:00
|
|
|
"jest": {
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"src/**/*.{js,jsx,ts,tsx}"
|
|
|
|
],
|
2020-06-09 19:41:58 +00:00
|
|
|
"coverageReporters": [
|
|
|
|
"cobertura",
|
2020-06-09 20:10:04 +00:00
|
|
|
"text",
|
|
|
|
"text-summary"
|
2020-06-09 19:41:58 +00:00
|
|
|
]
|
2020-06-09 18:10:26 +00:00
|
|
|
},
|
2020-11-27 22:43:12 +00:00
|
|
|
"proxy": "http://192.168.0.209",
|
2020-12-17 20:53:22 +00:00
|
|
|
"homepage": "./",
|
2020-05-31 11:47:57 +00:00
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "react-app"
|
|
|
|
},
|
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"development": [
|
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
|
|
|
]
|
2020-06-09 21:22:43 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-11-27 22:43:12 +00:00
|
|
|
"@testing-library/jest-dom": "^5.11.6",
|
|
|
|
"@testing-library/react": "^11.2.2",
|
|
|
|
"@testing-library/user-event": "^12.2.2",
|
2020-12-17 20:53:22 +00:00
|
|
|
"electron": "^11.1.0",
|
|
|
|
"electron-builder": "^22.1.0",
|
2020-06-10 13:41:41 +00:00
|
|
|
"enzyme": "^3.11.0",
|
2020-10-19 21:12:07 +00:00
|
|
|
"enzyme-adapter-react-16": "^1.15.5",
|
2020-12-17 20:53:22 +00:00
|
|
|
"jest-junit": "^12.0.0",
|
|
|
|
"react-scripts": "^3.4.4"
|
2020-05-31 11:47:57 +00:00
|
|
|
}
|
|
|
|
}
|