0195bf0778
- Updated `sass` version from `^1.86.0` to `^1.32.13` in `package.json`. - Refactored `Input` component to create a new `SimpleInput` component without password visibility toggle. - Introduced a new `PasswordInput` component for handling password inputs with show/hide functionality. - Updated imports and usage of input components in relevant pages to reflect the new structure.
32 lines
740 B
JSON
32 lines
740 B
JSON
{
|
|
"name": "cidwa-components",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"bootstrap": "^5.3.3",
|
|
"bootstrap-icons": "^1.11.3",
|
|
"next": "15.2.3",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-syntax-highlighter": "^15.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@types/bootstrap": "^5.2.10",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@types/react-syntax-highlighter": "^15.5.13",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.2.3",
|
|
"sass": "^1.32.13",
|
|
"typescript": "^5"
|
|
}
|
|
}
|