mocksaml/package.json

44 lines
1.2 KiB
JSON
Raw Normal View History

2022-01-08 15:11:13 +00:00
{
"name": "mock-saml",
2024-12-19 13:38:21 +00:00
"version": "1.3.11",
"description": "Mock SAML is a free SAML 2.0 Identity Provider for testing SAML SSO integrations.",
2022-01-08 15:11:13 +00:00
"private": true,
"license": "Apache 2.0",
2022-01-08 15:11:13 +00:00
"scripts": {
2022-01-14 16:40:25 +00:00
"dev": "next dev -p 4000",
2022-01-08 15:11:13 +00:00
"build": "next build",
"start": "next start -p 4000",
2023-12-25 12:15:10 +00:00
"lint": "next lint",
2024-02-04 15:38:33 +00:00
"check-format": "prettier --check .",
"format": "prettier --write .",
2023-12-25 12:15:10 +00:00
"release": "git checkout release && git merge origin/main && release-it && git checkout main && git merge origin/release && git push origin main"
2022-01-08 15:11:13 +00:00
},
"dependencies": {
"@boxyhq/saml20": "1.10.1",
"daisyui": "4.12.24",
"next": "15.2.3",
build(deps): bump react, react-dom and @types/react (#801) * build(deps): bump react, react-dom and @types/react Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react), [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) and [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react). These dependencies needed to be updated together. Updates `react` from 18.3.1 to 19.0.0 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.0.0/packages/react) Updates `react-dom` from 18.3.1 to 19.0.0 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.0.0/packages/react-dom) Updates `@types/react` from 18.3.12 to 19.0.1 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) --- updated-dependencies: - dependency-name: react dependency-type: direct:production update-type: version-update:semver-major - dependency-name: react-dom dependency-type: direct:production update-type: version-update:semver-major - dependency-name: "@types/react" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * updated deps --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Deepak Prabhakara <deepak@boxyhq.com>
2024-12-10 16:30:27 +00:00
"react": "19.0.0",
"react-dom": "19.0.0",
"react-gtm-module": "2.0.11"
2022-01-08 15:11:13 +00:00
},
"devDependencies": {
"@types/node": "22.13.10",
"@types/react": "19.0.10",
"@types/react-gtm-module": "2.0.4",
"@typescript-eslint/parser": "8.25.0",
"autoprefixer": "10.4.20",
"eslint": "9.22.0",
"eslint-config-next": "15.2.2",
"json": "11.0.0",
"postcss": "8.5.3",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.11",
"release-it": "18.1.2",
"tailwindcss": "3.4.17",
"typescript": "^5.7.3"
2022-02-27 19:26:51 +00:00
},
"engines": {
"node": ">=18.14.0"
2022-01-08 15:11:13 +00:00
}
2023-10-10 19:09:44 +00:00
}