- Introduced typography styles in _typography.scss for headings, paragraphs, blockquotes, and horizontal rules. - Added utility classes in _utils.scss for card styling and clearfix. - Updated layout.scss to include new typography and utility styles. - Defined common CSS variables in _common.scss for consistent theming. - Created dark and light theme variables in _dark.scss and _light.scss respectively. - Integrated Tailwind CSS with custom configurations in tailwind.config.js and postcss.config.js. - Implemented database migrations for contact and contact_persons tables. - Added data fixtures for generating sample contact data. - Developed Contact and ContactPerson entities with appropriate validation and serialization. - Enhanced ContactRepository with search and type filtering methods.
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"devDependencies": {
|
|
"@babel/core": "^7.17.0",
|
|
"@babel/preset-env": "^7.16.0",
|
|
"@symfony/webpack-encore": "^5.1.0",
|
|
"@tailwindcss/postcss": "^4.1.17",
|
|
"@tailwindcss/vite": "^4.1.17",
|
|
"autoprefixer": "^10.4.21",
|
|
"core-js": "^3.38.0",
|
|
"postcss": "^8.5.6",
|
|
"postcss-loader": "^7.0.0",
|
|
"regenerator-runtime": "^0.13.9",
|
|
"sass": "^1.70.0",
|
|
"sass-loader": "^16.0.0",
|
|
"tailwindcss": "^4.1.17",
|
|
"tailwindcss-primeui": "^0.6.1",
|
|
"vue": "^3.5.0",
|
|
"vue-loader": "^17.4.0",
|
|
"webpack": "^5.74.0",
|
|
"webpack-cli": "^5.1.0"
|
|
},
|
|
"dependencies": {
|
|
"@primevue/themes": "^4.4.1",
|
|
"pinia": "^2.2.0",
|
|
"primeicons": "^7.0.0",
|
|
"primevue": "^4.3.0",
|
|
"vue-router": "^4.5.0"
|
|
},
|
|
"license": "UNLICENSED",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev-server": "encore dev-server",
|
|
"dev": "encore dev",
|
|
"watch": "encore dev --watch",
|
|
"build": "encore production --progress"
|
|
}
|
|
}
|