dashboard/package.json

59 lines
1.8 KiB
JSON
Raw 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",
2022-04-10 21:31:40 +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",
2021-06-14 11:29:03 +02:00
"browserslist": "^4.16.6",
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",
2021-03-29 12:43:51 +02:00
"styled-components": "^5.2.1",
2023-09-21 21:29:42 +02:00
"typescript": "^5.0.0"
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": "^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",
"@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"
2023-09-21 19:52:02 +02:00
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": {
2022-04-10 21:31:40 +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
}
}