taskcafe/frontend/package.json

89 lines
2.5 KiB
JSON
Raw Normal View History

2020-04-10 04:40:22 +02:00
{
2022-05-06 23:41:52 +02:00
"name": "frontend",
2020-04-10 04:40:22 +02:00
"version": "0.1.0",
"private": true,
"dependencies": {
2022-05-06 23:41:52 +02:00
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"color": "^4.2.0",
2021-05-03 00:31:24 +02:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
2022-05-06 23:41:52 +02:00
"react-hook-form": "^7.25.3",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"styled-components": "^5.3.3",
"typescript": "^4.5.5"
2020-04-10 04:40:22 +02:00
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
2022-05-06 23:41:52 +02:00
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
2020-04-10 04:40:22 +02:00
},
"eslintConfig": {
2022-05-06 23:41:52 +02:00
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
2020-04-10 04:40:22 +02:00
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
2021-05-01 05:55:37 +02:00
"@graphql-codegen/cli": "^1.21.4",
"@graphql-codegen/typescript": "^1.22.0",
"@graphql-codegen/typescript-operations": "^1.17.16",
"@graphql-codegen/typescript-react-apollo": "^2.2.4",
2022-05-06 23:41:52 +02:00
"@storybook/addon-actions": "^6.4.16",
"@storybook/addon-essentials": "^6.4.16",
"@storybook/addon-links": "^6.4.16",
"@storybook/builder-webpack5": "^6.4.16",
"@storybook/manager-webpack5": "^6.4.16",
"@storybook/node-logger": "^6.4.16",
"@storybook/preset-create-react-app": "^4.0.0",
"@storybook/react": "^6.4.16",
"@types/color": "^3.0.2",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.21",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.21",
2021-05-03 00:31:24 +02:00
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
2020-04-10 04:40:22 +02:00
"eslint-config-airbnb": "^18.0.1",
2021-05-03 00:31:24 +02:00
"eslint-config-prettier": "^8.3.0",
2022-05-06 23:41:52 +02:00
"eslint-plugin-import": "^2.25.4",
2020-04-10 04:40:22 +02:00
"eslint-plugin-jsx-a11y": "^6.2.3",
2021-05-03 00:31:24 +02:00
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
2022-05-06 23:41:52 +02:00
"eslint-plugin-storybook": "^0.5.6",
"prettier": "^2.2.1",
"webpack": "^5.67.0"
2020-04-10 04:40:22 +02:00
}
}