jackson/package.json

111 lines
5.3 KiB
JSON

{
"name": "jackson",
"version": "1.11.3",
"private": true,
"description": "SAML 2.0 service",
"keywords": [
"SAML 2.0"
],
"repository": {
"type": "git",
"url": "https://github.com/boxyhq/jackson.git"
},
"license": "Apache-2.0",
"scripts": {
"dev": "cross-env JACKSON_API_KEYS=secret IDP_ENABLED=true next dev -p 5225",
"dev-dbs": "docker-compose -f ./_dev/docker-compose.yml up -d",
"dev-dbs-destroy": "docker-compose -f ./_dev/docker-compose.yml down --volumes --remove-orphans",
"lint": "next lint && eslint -c .eslintrc.js --ext .ts ./",
"mongo": "cross-env JACKSON_API_KEYS=secret DB_ENGINE=mongo DB_URL=mongodb://localhost:27017/jackson npm run dev",
"pre-loaded": "cross-env JACKSON_API_KEYS=secret DB_ENGINE=mem PRE_LOADED_CONNECTION='./uffizzi/saml_config' npm run dev",
"pre-loaded-db": "cross-env JACKSON_API_KEYS=secret PRE_LOADED_CONNECTION='./uffizzi/saml_config' npm run dev",
"sort": "npx sort-package-json",
"postgres": "cross-env JACKSON_API_KEYS=secret DB_ENGINE=sql DB_TYPE=postgres DB_URL=postgres://postgres:postgres@localhost:5432/postgres npm run dev",
"mysql": "cross-env JACKSON_API_KEYS=secret DB_ENGINE=sql DB_TYPE=mysql DB_URL=mysql://root:mysql@localhost:3307/mysql npm run dev",
"planetscale": "cross-env JACKSON_API_KEYS=secret DB_SSL=true DB_ENGINE=planetscale DB_URL=${PLANETSCALE_URL} npm run dev",
"mariadb": "cross-env JACKSON_API_KEYS=secret DB_ENGINE=sql DB_TYPE=mariadb DB_URL=mariadb://root@localhost:3306/mysql npm run dev",
"mssql": "cross-env JACKSON_API_KEYS=secret DB_ENGINE=sql DB_TYPE=mssql DB_URL='sqlserver://localhost:1433;database=master;username=sa;password=123ABabc!' npm run dev",
"dynamodb": "cross-env JACKSON_API_KEYS=secret DB_ENGINE=dynamodb DB_URL='http://localhost:8000' npm run dev",
"skaffold:postgres": "skaffold dev -f skaffold-postgres.yaml --status-check=false --force=true",
"skaffold:mongo": "skaffold dev -f skaffold-mongo.yaml --status-check=false --force=true",
"skaffold:mysql": "skaffold dev -f skaffold-mysql.yaml --status-check=false --force=true",
"skaffold:mariadb": "skaffold dev -f skaffold-mariadb.yaml --status-check=false --force=true",
"skaffold:mssql": "skaffold dev -f skaffold-mssql.yaml --status-check=false --force=true",
"skaffold:dynamodb": "skaffold dev -f skaffold-dynamodb.yaml --status-check=false --force=true",
"start": "cross-env PORT=5225 NODE_OPTIONS=--dns-result-order=ipv4first node .next/standalone/server.js",
"swagger-jsdoc": "swagger-jsdoc -d swagger/swaggerDefinition.js npm/src/**/*.ts npm/src/**/**/*.ts -o swagger/swagger.json",
"redis": "cross-env JACKSON_API_KEYS=secret DB_ENGINE=redis DB_TYPE=redis DB_URL=redis://localhost:6379/redis npm run dev",
"prepare": "npm run prepare:npm",
"prepare:npm": "cd npm && npm install --legacy-peer-deps",
"pretest:e2e": "env-cmd -f .env.test.local ts-node --logError e2e/support/pretest.ts",
"test:e2e": "env-cmd -f .env.test.local playwright test",
"test": "cd npm && npm run test",
"jackson-cleanup": "rm -rf node_modules/@boxyhq/saml-jackson || Remove-Item -Path .\\node_modules\\@boxyhq\\saml-jackson -Force -Recurse || rmdir \\node_modules\\@boxyhq\\saml-jackson /s /q || echo 'done'",
"custom-install": "npm run jackson-cleanup && npm install --install-links=false",
"preinstall": "echo 'Please ensure you are running npm install with --install-links=false or using our custom-install npm script.'",
"postcustom-install": "npm run prebuild",
"postinstall": "npm run prebuild",
"prebuild": "ts-node --logError prebuild.ts",
"build": "next build",
"postbuild": "ts-node --logError postbuild.ts",
"release": "git checkout release && git merge origin/main && release-it"
},
"dependencies": {
"@boxyhq/metrics": "0.2.5",
"@boxyhq/react-ui": "3.3.9",
"@boxyhq/saml-jackson": "file:npm",
"@heroicons/react": "2.0.18",
"@retracedhq/logs-viewer": "2.5.1",
"@retracedhq/retraced": "0.7.0",
"@tailwindcss/typography": "0.5.9",
"axios": "1.5.0",
"blockly": "10.1.3",
"classnames": "2.3.2",
"cors": "2.8.5",
"daisyui": "3.6.4",
"i18next": "22.5.1",
"micromatch": "4.0.5",
"next": "13.4.19",
"next-auth": "4.23.1",
"next-i18next": "13.3.0",
"nodemailer": "6.9.4",
"raw-body": "2.5.2",
"react": "18.2.0",
"react-daisyui": "4.1.0",
"react-dom": "18.2.0",
"react-i18next": "12.3.1",
"react-syntax-highlighter": "15.5.0",
"sharp": "0.32.5",
"swr": "2.2.2"
},
"devDependencies": {
"@apidevtools/swagger-cli": "4.0.4",
"@playwright/test": "1.37.1",
"@types/cors": "2.8.13",
"@types/micromatch": "4.0.2",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"autoprefixer": "10.4.15",
"cross-env": "7.0.3",
"env-cmd": "10.1.0",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "9.0.0",
"postcss": "8.4.29",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.4",
"release-it": "16.1.5",
"swagger-jsdoc": "6.2.8",
"tailwindcss": "3.3.3",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.2.2"
},
"engines": {
"node": ">=18.14.2",
"npm": ">=8"
}
}