1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 10:35:10 +00:00

Bump web deps

This commit is contained in:
Brenden Matthews 2024-04-11 10:34:51 -04:00
parent 9565e2f7c2
commit d45836f14e
3 changed files with 17037 additions and 1985 deletions

View File

@ -5,14 +5,24 @@ publish = ".next"
# Include the doc dir in the build ignore command # Include the doc dir in the build ignore command
ignore = "git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF . ../doc/" ignore = "git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF . ../doc/"
[build.environment]
# cache Cypress binary in local "node_modules" folder
# so Netlify caches it
CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"
# set TERM variable for terminal output
TERM = "xterm"
[[plugins]] [[plugins]]
package = "@netlify/plugin-nextjs" package = "@netlify/plugin-nextjs"
[[plugins]] [[plugins]]
package = "netlify-plugin-cypress" package = "netlify-plugin-cypress"
[plugins.inputs.postBuild] # do not test the deployed URL
enable = true
[plugins.inputs] [plugins.inputs]
enable = false enable = false
# test the local site
[plugins.inputs.preBuild]
enable = true
start = 'npx netlify dev'
wait-on = 'http://localhost:8888'

18983
web/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -26,7 +26,7 @@
"@fontsource-variable/inter": "^5.0.17", "@fontsource-variable/inter": "^5.0.17",
"@fontsource-variable/newsreader": "^5.0.18", "@fontsource-variable/newsreader": "^5.0.18",
"@headlessui/react": "^1.7.18", "@headlessui/react": "^1.7.18",
"@netlify/plugin-nextjs": "^4.41.3", "@netlify/plugin-nextjs": "^5.0.0",
"@tailwindcss/typography": "^0.5.12", "@tailwindcss/typography": "^0.5.12",
"classnames": "^2.5.1", "classnames": "^2.5.1",
"colord": "^2.9.3", "colord": "^2.9.3",
@ -43,19 +43,20 @@
"devDependencies": { "devDependencies": {
"@types/eslint": "^8.56.7", "@types/eslint": "^8.56.7",
"@types/js-yaml": "^4.0.9", "@types/js-yaml": "^4.0.9",
"@types/node": "^20.12.2", "@types/node": "^20.12.7",
"@types/react": "^18.2.73", "@types/react": "^18.2.75",
"@types/react-dom": "^18.2.23", "@types/react-dom": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^7.4.0", "@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.4.0", "@typescript-eslint/parser": "^7.6.0",
"autoprefixer": "^10.4.19", "autoprefixer": "^10.4.19",
"cypress": "^13.7.1", "cypress": "^13.7.2",
"eslint": "^8.57.0", "eslint": "^8.57.0",
"eslint-config-next": "^14.1.4", "eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.1", "eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-mdx": "^3.1.5", "eslint-plugin-mdx": "^3.1.5",
"js-yaml": "^4.1.0", "js-yaml": "^4.1.0",
"netlify-cli": "^17.22.1",
"netlify-plugin-cypress": "^2.2.1", "netlify-plugin-cypress": "^2.2.1",
"next-remote-watch": "2.0.0", "next-remote-watch": "2.0.0",
"postcss": "^8.4.38", "postcss": "^8.4.38",
@ -65,7 +66,7 @@
"remark-rehype": "^11.1.0", "remark-rehype": "^11.1.0",
"start-server-and-test": "^2.0.3", "start-server-and-test": "^2.0.3",
"tailwindcss": "^3.4.3", "tailwindcss": "^3.4.3",
"tsx": "^4.7.1", "tsx": "^4.7.2",
"typescript": "^5.4.3" "typescript": "^5.4.5"
} }
} }