1
0
mirror of synced 2025-12-26 14:00:11 -05:00
Files
blitz/packages/blitz-auth/package.json
Siddharth Suresh 9be4d86174 Version Packages (beta) (#4035)
* Version Packages (beta)

* Version Packages (beta)

* pnpm lock

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-01-04 01:16:55 +05:30

64 lines
1.7 KiB
JSON

{
"name": "@blitzjs/auth",
"version": "2.0.0-beta.21",
"scripts": {
"build": "unbuild",
"predev": "wait-on -d 250 ../blitz/dist/index-server.d.ts",
"dev": "rm -rf dist && pnpm run predev && watch unbuild src --wait=0.2",
"lint": "eslint . --fix",
"test": "vitest run",
"test-watch": "vitest",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"main": "./dist/index-server.cjs",
"module": "./dist/index-server.mjs",
"browser": "./dist/index-browser.mjs",
"types": "./dist/index-server.d.ts",
"sideEffects": false,
"license": "MIT",
"files": [
"dist/**"
],
"dependencies": {
"@types/b64-lite": "1.3.0",
"@types/cookie-session": "2.0.44",
"@types/passport": "1.0.7",
"@types/secure-password": "3.1.1",
"b64-lite": "1.4.0",
"bad-behavior": "1.0.1",
"cookie": "0.4.1",
"cookie-session": "2.0.0",
"debug": "4.3.3",
"http": "0.0.1-security",
"jsonwebtoken": "8.5.1",
"nanoid": "3.2.0",
"passport": "0.5.2",
"path": "0.12.7",
"secure-password": "4.0.0",
"supports-color": "8.1.1",
"url": "0.11.0"
},
"peerDependencies": {
"blitz": "2.0.0-beta.21"
},
"devDependencies": {
"@blitzjs/config": "workspace:2.0.0-beta.21",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@types/cookie": "0.4.1",
"@types/debug": "4.1.7",
"@types/jsonwebtoken": "8.5.8",
"@types/react": "18.0.25",
"@types/react-dom": "17.0.14",
"blitz": "2.0.0-beta.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "^4.8.4",
"unbuild": "0.7.6",
"watch": "1.0.2"
},
"publishConfig": {
"access": "public"
}
}