mirror of
https://github.com/evroon/bracket.git
synced 2026-03-04 07:11:00 -05:00
Bumps [cookies-next](https://github.com/andreizanik/cookies-next) from 2.1.1 to 3.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/andreizanik/cookies-next/releases">cookies-next's releases</a>.</em></p> <blockquote> <h2>v3.0.0</h2> <h2>What's Changed</h2> <ul> <li>Add missing import to the "Client Example" [Documentation] by <a href="https://github.com/greg2012201"><code>@greg2012201</code></a> in <a href="https://redirect.github.com/andreizanik/cookies-next/pull/45">andreizanik/cookies-next#45</a></li> <li>delete extra parsing and deprecated functions by <a href="https://github.com/andreizanik"><code>@andreizanik</code></a> in <a href="https://redirect.github.com/andreizanik/cookies-next/pull/46">andreizanik/cookies-next#46</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/greg2012201"><code>@greg2012201</code></a> made their first contribution in <a href="https://redirect.github.com/andreizanik/cookies-next/pull/45">andreizanik/cookies-next#45</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/andreizanik/cookies-next/compare/v2.1.2...v3.0.0">https://github.com/andreizanik/cookies-next/compare/v2.1.2...v3.0.0</a></p> <h2>v2.1.2 Add JSDoc for deprecated methods</h2> <h2>What's Changed</h2> <ul> <li>chore: Add JSDoc for deprecated methods by <a href="https://github.com/minsoo-web"><code>@minsoo-web</code></a> in <a href="https://redirect.github.com/andreizanik/cookies-next/pull/41">andreizanik/cookies-next#41</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/minsoo-web"><code>@minsoo-web</code></a> made their first contribution in <a href="https://redirect.github.com/andreizanik/cookies-next/pull/41">andreizanik/cookies-next#41</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/andreizanik/cookies-next/compare/v2.1.1...v2.1.2">https://github.com/andreizanik/cookies-next/compare/v2.1.1...v2.1.2</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="2d5037238b"><code>2d50372</code></a> 3.0.0</li> <li><a href="b47a0980f7"><code>b47a098</code></a> Merge pull request <a href="https://redirect.github.com/andreizanik/cookies-next/issues/46">#46</a> from andreizanik/default_types</li> <li><a href="2ed27f62d5"><code>2ed27f6</code></a> delete extra parsing and deprecated functions</li> <li><a href="7150cf3ce9"><code>7150cf3</code></a> Merge pull request <a href="https://redirect.github.com/andreizanik/cookies-next/issues/45">#45</a> from greg2012201/documentation-fix</li> <li><a href="99fe61a498"><code>99fe61a</code></a> Add missing import.</li> <li><a href="7d552eec5d"><code>7d552ee</code></a> 2.1.2</li> <li><a href="e865fe7073"><code>e865fe7</code></a> Merge pull request <a href="https://redirect.github.com/andreizanik/cookies-next/issues/41">#41</a> from minsoo-web/master</li> <li><a href="a1fcb31838"><code>a1fcb31</code></a> chore: Add JSDoc for deprecated methods</li> <li>See full diff in <a href="https://github.com/andreizanik/cookies-next/compare/v2.1.1...v3.0.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
72 lines
2.3 KiB
JSON
72 lines
2.3 KiB
JSON
{
|
|
"name": "Bracket",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"analyze": "ANALYZE=true next build",
|
|
"start": "next start",
|
|
"typecheck": "tsc --noEmit",
|
|
"export": "next build && next export",
|
|
"lint": "next lint",
|
|
"jest": "jest",
|
|
"jest:watch": "jest --watch",
|
|
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
|
|
"test": "tsc --noEmit && npm run prettier:check && npm run lint && npm run jest -- --passWithNoTests"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.10.6",
|
|
"@emotion/server": "^11.10.0",
|
|
"@mantine/core": "^6.0.5",
|
|
"@mantine/dropzone": "^6.0.5",
|
|
"@mantine/form": "^6.0.5",
|
|
"@mantine/hooks": "^6.0.5",
|
|
"@mantine/next": "^6.0.5",
|
|
"@mantine/notifications": "^6.0.5",
|
|
"@next/bundle-analyzer": "^13.3.1",
|
|
"@react-icons/all-files": "^4.1.0",
|
|
"@tabler/icons-react": "^2.17.0",
|
|
"axios": "^1.4.0",
|
|
"cookies-next": "^3.0.0",
|
|
"date-fns": "^2.29.3",
|
|
"next": "^13.3.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-icons": "^4.8.0",
|
|
"react-redux": "^8.0.5",
|
|
"swr": "^2.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.21.0",
|
|
"@next/eslint-plugin-next": "^13.2.3",
|
|
"@testing-library/dom": "^9.2.0",
|
|
"@testing-library/jest-dom": "^6.0.0",
|
|
"@testing-library/react": "^14.0.0",
|
|
"@testing-library/user-event": "^14.4.3",
|
|
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
|
|
"@types/jest": "^29.5.2",
|
|
"@types/node": "^20.1.0",
|
|
"@types/react": "^18.2.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.2.1",
|
|
"@typescript-eslint/parser": "^6.3.0",
|
|
"babel-loader": "^9.1.2",
|
|
"eslint": "^8.39.0",
|
|
"eslint-config-airbnb": "^19.0.4",
|
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
"eslint-config-mantine": "^2.0.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-jest": "^27.2.1",
|
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
"eslint-plugin-react": "^7.32.1",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-testing-library": "^6.0.0",
|
|
"jest": "^29.5.0",
|
|
"jest-environment-jsdom": "^29.5.0",
|
|
"prettier": "^3.0.1",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.0.4"
|
|
}
|
|
}
|