2020-05-19 22:01:53 +02:00
|
|
|
{
|
|
|
|
"name": "dashboard",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
|
|
|
"@testing-library/jest-dom": "^4.2.4",
|
|
|
|
"@testing-library/react": "^9.3.2",
|
|
|
|
"@testing-library/user-event": "^7.1.2",
|
2020-05-20 21:28:14 +02:00
|
|
|
"http-server": "^0.12.3",
|
2020-05-20 13:49:49 +02:00
|
|
|
"material-icons-react": "^1.0.4",
|
2020-05-19 22:01:53 +02:00
|
|
|
"react": "^16.13.1",
|
|
|
|
"react-dom": "^16.13.1",
|
2020-05-20 13:49:49 +02:00
|
|
|
"react-scripts": "3.4.1",
|
|
|
|
"react-select": "^3.1.0",
|
|
|
|
"styled-components": "^5.1.0"
|
2020-05-19 22:01:53 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-05-20 21:28:14 +02:00
|
|
|
"serveAppData": "http-server ./data -c-1",
|
|
|
|
"serveProductionApp": "http-server ./build --proxy http://localhost:8080 --port 3000",
|
2020-05-19 22:01:53 +02:00
|
|
|
"start": "react-scripts start",
|
|
|
|
"build": "react-scripts build",
|
2020-05-20 21:28:14 +02:00
|
|
|
"serve:dev": "npm-run-all --parallel serveAppData start",
|
|
|
|
"serve:production": "npm-run-all --parallel serveAppData serveProductionApp",
|
2020-05-19 22:01:53 +02:00
|
|
|
"test": "react-scripts test",
|
|
|
|
"eject": "react-scripts eject"
|
|
|
|
},
|
|
|
|
"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-05-20 21:28:14 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"npm-run-all": "^4.1.5"
|
2020-05-19 22:01:53 +02:00
|
|
|
}
|
|
|
|
}
|