OpenMediaCenter/package.json

99 lines
2.6 KiB
JSON
Raw Normal View History

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,
"author": {
"email": "lukas.heiligenbrunner@gmail.com",
"name": "Lukas Heiligenbrunner",
"url": "https://heili.eu"
},
2020-05-31 11:47:57 +00:00
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.13",
"bootstrap": "^4.5.3",
"plyr-react": "^3.0.7",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^17.0.1",
2020-12-29 19:39:30 +00:00
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"typescript": "^4.1.3"
2020-05-31 11:47:57 +00:00
},
"scripts": {
"start": "react-scripts start",
"build": "CI=false react-scripts build",
"test": "CI=true react-scripts test --reporters=jest-junit --verbose --silent --coverage --reporters=default",
"lint": "eslint --format gitlab src/"
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
},
"proxy": "http://127.0.0.1:8081",
"homepage": "/",
2020-05-31 11:47:57 +00:00
"eslintConfig": {
2020-12-29 19:39:30 +00:00
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/explicit-function-return-type": "error"
}
}
]
2020-05-31 11:47:57 +00:00
},
"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": {
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
2020-12-29 19:39:30 +00:00
"@testing-library/user-event": "^12.6.0",
"@types/jest": "^26.0.19",
2021-03-05 20:10:10 +00:00
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-router": "5.1.12",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-formatter-gitlab": "^2.2.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^24.3.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest-junit": "^12.0.0",
"prettier": "^2.2.1",
"prettier-config": "^1.0.0",
2021-03-05 20:10:10 +00:00
"react-scripts": "4.0.3"
2020-05-31 11:47:57 +00:00
}
}