2020-05-19 22:01:53 +02:00
|
|
|
{
|
2020-07-08 19:36:36 +02:00
|
|
|
"name": "dashboard",
|
2021-03-29 12:43:51 +02:00
|
|
|
"version": "1.0.0",
|
2021-04-03 17:11:49 +02:00
|
|
|
"license": "MIT",
|
2021-03-29 12:43:51 +02:00
|
|
|
"repository": "git@github.com:phntxx/dashboard",
|
2021-06-23 12:25:10 +02:00
|
|
|
"contributors": ["phntxx <hello@phntxx.com>"],
|
2021-03-29 12:43:51 +02:00
|
|
|
"private": false,
|
2020-07-08 19:36:36 +02:00
|
|
|
"dependencies": {
|
2021-03-29 12:43:51 +02:00
|
|
|
"@types/node": "^14.14.37",
|
|
|
|
"@types/react-dom": "^17.0.3",
|
|
|
|
"@types/react-select": "^4.0.13",
|
|
|
|
"@types/styled-components": "^5.1.9",
|
2021-06-14 11:29:03 +02:00
|
|
|
"browserslist": "^4.16.6",
|
|
|
|
"http-server": "^0.12.3",
|
|
|
|
"npm-run-all": "^4.1.5",
|
2021-03-29 12:43:51 +02:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-dom": "^17.0.2",
|
|
|
|
"react-scripts": "^4.0.3",
|
|
|
|
"react-select": "^4.3.0",
|
|
|
|
"styled-components": "^5.2.1",
|
|
|
|
"typescript": "^4.2.3"
|
2020-07-08 19:36:36 +02:00
|
|
|
},
|
2021-06-14 11:29:03 +02:00
|
|
|
"devDependencies": {
|
|
|
|
"@testing-library/jest-dom": "^5.11.10",
|
|
|
|
"@testing-library/react": "^11.2.7",
|
|
|
|
"@testing-library/user-event": "^13.0.6",
|
|
|
|
"@types/jest": "^26.0.22",
|
|
|
|
"codecov": "^3.8.2",
|
|
|
|
"eslint": "^7.28.0",
|
|
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
|
|
"prettier": "^2.3.1"
|
|
|
|
},
|
2020-07-08 19:36:36 +02:00
|
|
|
"scripts": {
|
|
|
|
"start": "react-scripts start",
|
|
|
|
"build": "react-scripts build",
|
2021-06-14 11:29:03 +02:00
|
|
|
"coverage": "codecov -f coverage/*.json -F dashboard",
|
2021-06-24 12:03:26 +02:00
|
|
|
"test": "react-scripts test",
|
2021-06-14 11:29:03 +02:00
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
"eject": "react-scripts eject",
|
|
|
|
"lint": "eslint --config .eslintrc.js",
|
|
|
|
"prettier": "prettier --config .prettierrc.js '{data,src}/**/*.{json,ts,tsx}'",
|
|
|
|
"http-server:data": "http-server ./ -c-1",
|
|
|
|
"http-server:app": "http-server ./build --proxy http://localhost:8080 --port 3000",
|
|
|
|
"serve:production": "npm-run-all --parallel http-server:data http-server:app"
|
2020-07-08 19:36:36 +02:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "react-app"
|
2021-04-03 16:54:44 +02:00
|
|
|
},
|
|
|
|
"browserslist": {
|
2021-06-23 12:25:10 +02:00
|
|
|
"production": [">0.2%", "not dead", "not op_mini all"],
|
2021-04-03 16:54:44 +02:00
|
|
|
"development": [
|
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
|
|
|
]
|
2020-07-08 19:36:36 +02:00
|
|
|
}
|
2020-05-19 22:01:53 +02:00
|
|
|
}
|