Skip to content

Commit

Permalink
feat: button and input components
Browse files Browse the repository at this point in the history
Co-Authored-By: Joaovitor045 <joaovitoralvestf@gmail.com>
Co-Authored-By: gsVieiraaa <Gabriel.vieira.santos.110@gmail.com>
  • Loading branch information
3 people committed Dec 8, 2024
1 parent 488c53a commit 9d02dc3
Show file tree
Hide file tree
Showing 15 changed files with 391 additions and 141 deletions.
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
dist/
10 changes: 10 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

{
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": true,
"endOfLine": "lf"
}
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
</head>
<body>
<div id="root"></div>
Expand Down
205 changes: 200 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 15 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@
"lint": "eslint .",
"preview": "vite preview",
"test": "jest",
"cov": "jest --coverage --collectCoverageFrom='src/**/*.{ts,tsx}'"
"cov": "jest --coverage --collectCoverageFrom='src/**/*.{ts,tsx}'",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"react-router": "^7.0.2",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@babel/core": "^7.26.0",
Expand All @@ -27,16 +31,23 @@
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitejs/plugin-react": "^4.3.3",
"babel-jest": "^29.7.0",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.11.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-sonar": "^0.2.16",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.11.0",
Expand Down
Loading

0 comments on commit 9d02dc3

Please sign in to comment.