mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "@stackframe/stack-proxy",
|
|
"version": "2.6.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch main.ts -s 8115 -p 8116 -u \"/protected**\"",
|
|
"build:next": "next build",
|
|
"start:next": "next start",
|
|
"build:tsc": "tsc --project tsconfig.build.json",
|
|
"start:tsc": "node dist/main.js",
|
|
"build": "npm run build:next && npm run build:tsc",
|
|
"start": "npm run start:tsc",
|
|
"lint": "next lint"
|
|
},
|
|
"bin": {
|
|
"stack-proxy": "./dist/main.js"
|
|
},
|
|
"dependencies": {
|
|
"@stackframe/stack": "workspace:*",
|
|
"commander": "^12.1.0",
|
|
"http-proxy": "^1.18.1",
|
|
"minimatch": "^10.0.1",
|
|
"next": "14.2.7",
|
|
"react": "^18",
|
|
"react-dom": "^18"
|
|
},
|
|
"devDependencies": {
|
|
"@types/command-line-args": "^5.2.3",
|
|
"@types/http-proxy": "^1.17.15",
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"eslint": "^8",
|
|
"eslint-config-next": "14.2.7",
|
|
"postcss": "^8",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5",
|
|
"tsx": "^4.7.2"
|
|
}
|
|
}
|