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-04-05 21:32:45 +00:00
"version": "1.3.9",
"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.5.1",
"daisyui": "4.12.14",
"next": "15.0.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-gtm-module": "2.0.11"
2022-01-08 15:11:13 +00:00
},
"devDependencies": {
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-gtm-module": "2.0.4",
"@typescript-eslint/parser": "8.14.0",
"autoprefixer": "10.4.20",
"eslint": "9.14.0",
"eslint-config-next": "15.0.3",
"json": "11.0.0",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"release-it": "17.10.0",
"tailwindcss": "3.4.14",
"typescript": "5.6.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
}