feat: tailwind related improvement (#6085)

This commit is contained in:
Joel
2024-07-09 15:05:40 +08:00
committed by GitHub
parent 7c70eb87bc
commit eff280f3e7
340 changed files with 2117 additions and 417 deletions

View File

@@ -2,6 +2,9 @@
"name": "dify-web",
"version": "0.6.13",
"private": true,
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
@@ -88,6 +91,7 @@
"sharp": "^0.33.2",
"sortablejs": "^1.15.0",
"swr": "^2.1.0",
"tailwind-merge": "^2.4.0",
"use-context-selector": "^1.4.1",
"uuid": "^9.0.1",
"zod": "^3.23.6",
@@ -123,10 +127,14 @@
"lint-staged": "^13.2.2",
"postcss": "^8.4.31",
"sass": "^1.61.0",
"tailwindcss": "^3.3.3",
"tailwindcss": "^3.4.4",
"typescript": "4.9.5",
"uglify-js": "^3.17.4"
},
"resolutions": {
"@types/react": "~18.2.0",
"@types/react-dom": "~18.2.0"
},
"lint-staged": {
"**/*.js?(x)": [
"eslint --fix"
@@ -134,12 +142,5 @@
"**/*.ts?(x)": [
"eslint --fix"
]
},
"engines": {
"node": ">=18.17.0"
},
"resolutions": {
"@types/react": "~18.2.0",
"@types/react-dom": "~18.2.0"
}
}