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",
|
2023-09-21 23:43:45 +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": {
|
2023-09-21 16:29:39 +02:00
|
|
|
"@types/node": "^20.0.0",
|
2022-04-10 21:31:40 +02:00
|
|
|
"@types/react-dom": "^18.0.0",
|
2021-03-29 12:43:51 +02:00
|
|
|
"@types/styled-components": "^5.1.9",
|
2023-09-21 23:43:45 +02:00
|
|
|
"browserslist": "^4.21.11",
|
2022-04-06 12:19:01 +02:00
|
|
|
"http-server": "^14.1.0",
|
2021-06-14 11:29:03 +02:00
|
|
|
"npm-run-all": "^4.1.5",
|
2022-04-10 21:31:40 +02:00
|
|
|
"react": "^18.0.0",
|
|
|
|
"react-dom": "^18.0.0",
|
2022-04-06 12:19:01 +02:00
|
|
|
"react-scripts": "^5.0.0",
|
2023-09-21 23:43:45 +02:00
|
|
|
"styled-components": "^6.0.8",
|
|
|
|
"typescript": "^5.2.2"
|
2020-07-08 19:36:36 +02:00
|
|
|
},
|
2021-06-14 11:29:03 +02:00
|
|
|
"devDependencies": {
|
2023-09-21 23:43:45 +02:00
|
|
|
"@testing-library/jest-dom": "^6.1.3",
|
2023-09-21 14:29:40 +02:00
|
|
|
"@testing-library/react": "^14.0.0",
|
2022-04-10 21:31:40 +02:00
|
|
|
"@testing-library/user-event": "^14.0.4",
|
2023-09-21 15:29:39 +02:00
|
|
|
"@types/jest": "^29.0.0",
|
2023-09-21 17:29:47 +02:00
|
|
|
"@typescript-eslint/parser": "^6.0.0",
|
2021-06-14 11:29:03 +02:00
|
|
|
"codecov": "^3.8.2",
|
2022-04-10 21:31:40 +02:00
|
|
|
"eslint": "^8.13.0",
|
2021-06-14 11:29:03 +02:00
|
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
2023-09-21 19:53:37 +02:00
|
|
|
"prettier": "^3.0.0"
|
2021-06-14 11:29:03 +02:00
|
|
|
},
|
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}'",
|
2022-04-11 19:13:43 +02:00
|
|
|
"format": "prettier -w --config .prettierrc.js '{data,src}/**/*.{json,ts,tsx}'",
|
2021-06-14 11:29:03 +02:00
|
|
|
"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": {
|
2023-09-21 23:43:45 +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
|
|
|
}
|