dashboard/package.json

65 lines
1.9 KiB
JSON
Raw Permalink Normal View History

{
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": {
2024-06-03 22:44:43 +02:00
"@testing-library/dom": "^10.1.0",
2024-07-28 13:18:36 +02:00
"@types/node": "^22.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",
"@testing-library/react": "^16.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",
"@typescript-eslint/parser": "^8.0.0",
2021-06-14 11:29:03 +02:00
"codecov": "^3.8.2",
2024-04-05 23:17:45 +02:00
"eslint": "^9.0.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",
"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}'",
"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
}
}