dashboard/package.json

52 lines
1.4 KiB
JSON
Raw Normal View History

{
2020-07-08 19:36:36 +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",
"@types/jest": "^24.0.0",
2021-03-23 16:26:14 +01:00
"@types/node": "^14.14.35",
2020-07-08 19:36:36 +02:00
"@types/react-dom": "^16.9.8",
"@types/react-select": "^3.0.14",
"@types/styled-components": "^5.1.1",
2020-07-09 18:32:20 +02:00
"http-server": "^0.12.3",
2020-07-09 16:39:31 +02:00
"npm-run-all": "^4.1.5",
2020-07-08 19:36:36 +02:00
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"react-select": "^3.1.0",
"styled-components": "^5.1.1",
2020-07-10 00:04:47 +02:00
"typescript": "^3.9.6"
2020-07-08 19:36:36 +02:00
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
2020-07-09 11:36:32 +02:00
"eject": "react-scripts eject",
"serveAppData": "http-server ./ -c-1",
"serveProductionApp": "http-server ./build --proxy http://localhost:8080 --port 3000",
"serve:dev": "npm-run-all --parallel serveAppData start",
"serve:production": "npm-run-all --parallel serveAppData serveProductionApp"
2020-07-08 19:36:36 +02: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"
]
},
"devDependencies": {
"@types/react": "^16.9.41"
}
}