* Add Github actions * Fix the docker build issue * Remove the duplicate Github action * only need runtime env vars during build * ENV NEXT_TELEMETRY_DISABLED is a runtime env var * Add missing keys to package.json * Use the npm version as tag Co-authored-by: Deepak Prabhakara <deepak@boxyhq.com>
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "mock-saml",
|
|
"version": "0.1.0",
|
|
"description": "Mock SAML is a free SAML 2.0 Identity Provider for testing SAML SSO integrations.",
|
|
"private": true,
|
|
"license": "Apache 2.0",
|
|
"scripts": {
|
|
"dev": "next dev -p 4000",
|
|
"build": "next build",
|
|
"start": "next start -p 4000",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@boxyhq/saml20": "0.2.0",
|
|
"@xmldom/xmldom": "0.8.1",
|
|
"next": "12.1.0",
|
|
"node-forge": "1.2.1",
|
|
"react": "17.0.2",
|
|
"react-dom": "17.0.2",
|
|
"react-gtm-module": "2.0.11",
|
|
"xml-crypto": "2.1.3",
|
|
"xml2js": "0.4.23",
|
|
"xmlbuilder": "15.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "17.0.8",
|
|
"@types/node-forge": "1.0.0",
|
|
"@types/react": "17.0.38",
|
|
"@types/react-gtm-module": "2.0.1",
|
|
"@types/xml-crypto": "1.4.2",
|
|
"@types/xml2js": "0.4.9",
|
|
"autoprefixer": "10.4.2",
|
|
"eslint": "8.6.0",
|
|
"eslint-config-next": "12.0.7",
|
|
"postcss": "8.4.6",
|
|
"prettier": "2.5.1",
|
|
"prettier-plugin-tailwindcss": "0.1.8",
|
|
"tailwindcss": "3.0.23",
|
|
"typescript": "4.5.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.18.1 <=16.x"
|
|
}
|
|
}
|