mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
* added stack-ui package * added ui elements * fixed react package type bug, added deleted components back * updated button and typography interface * added element provider * moved all elements to element context * added ui-joy * moved UIPage component and update Button component * added StackUIProvider * added UI framework switch * changed theme to colormode * changed StackUIProvider interface * updated file names * updated package config * fixed types and dependencies * fixed color theme * added custom button * converted signin page to stack-ui * moved oauth button stack-ui * fixed styling bugs * changed color/variant interface for button and text * moved credential sign up to stack-ui * moved card header and divider to stack-ui * moved card-frame to stack-ui, fixed bugs * fixed bugs, added global bg color to dev app * moved forgot password to stack-ui * updated styling * moved form warning text to stack-ui * added redirect message card to stack-ui * moved everything to stack-ui, removed daisy and tailwind * added joy input * simplified code * fixed joy button * restructured UI provider interface * made joy color mode work * fixed small ui bugs * updated demo, changed constant structures in stack-ui * added select ui to demo * added joy ui text * added mui divider * Used dynamic elements to replace useElements hook * changed full page behaviour (100vh => 100%) * added auto detect parent to cardframe * updated documentation * updated customization overview * updated custom color doc * fixed system color mode bug * fixed select visual on safari * changed UI provider interface * renamed files to lower case * fixed import bug * finished custom colors doc * added docs for custom components * removed wrong cased files * updated custom pages docs * updated custom component docs * elements -> components * fixed missing rename * fixed broken links in docs * removed tailwind css import in stack * fixed typos and small problems * cleaned up package.json files * updated dependencies * fixed stack-server bug (webpack xxx not a function and u type error) * updated setup doc * added changeset * fixed the 'use client' bug in stack-ui * merged stack-ui and stack-ui-joy into stack * renamed StackUIProvider to StackTheme * unified imports * added hook details to custom color doc
51 lines
1.8 KiB
JSON
51 lines
1.8 KiB
JSON
{
|
|
"name": "root",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"repository": "",
|
|
"scripts": {
|
|
"typecheck": "turbo typecheck",
|
|
"build": "turbo build",
|
|
"build:docs": "turbo run build --no-cache --filter=stack-docs...",
|
|
"build:server": "turbo run build --no-cache --filter=@stackframe/stack-server...",
|
|
"build:demo": "turbo run build --no-cache --filter=demo-app...",
|
|
"clean": "turbo run clean --no-cache && rimraf node_modules",
|
|
"codegen": "turbo run codegen --no-cache",
|
|
"psql:server": "pnpm run --filter=@stackframe/stack-server psql",
|
|
"prisma:server": "pnpm run --filter=@stackframe/stack-server prisma",
|
|
"dev": "turbo run dev --parallel --continue",
|
|
"dev:app": "turbo run dev --continue --filter=@stackframe/dev-app...",
|
|
"dev:server": "turbo run dev --continue --filter=@stackframe/stack-server...",
|
|
"dev:email": "turbo run email --continue --filter=@stackframe/stack-server...",
|
|
"start:server": "turbo run start --continue --filter=@stackframe/stack-server...",
|
|
"docs": "turbo run dev --parallel --continue --filter=stack-docs...",
|
|
"lint": "turbo run lint --no-cache -- --max-warnings=0",
|
|
"release": "release",
|
|
"peek": "pnpm release --peek",
|
|
"changeset": "changeset"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.27.1",
|
|
"@types/node": "^20.8.10",
|
|
"@typescript-eslint/eslint-plugin": "^6.x",
|
|
"@typescript-eslint/parser": "^6.x",
|
|
"eslint": "8.30.0",
|
|
"eslint-config-standard-with-typescript": "^43",
|
|
"eslint-plugin-import": "^2.25.4",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^6.0.0",
|
|
"eslint-plugin-react": "^7.31.11",
|
|
"eslint-config-next": "^14",
|
|
"turbo": "^1.11.3",
|
|
"typescript": "5.3.3",
|
|
"rimraf": "^5.0.5"
|
|
},
|
|
"engines": {
|
|
"node": "^20.8.0"
|
|
},
|
|
"packageManager": "pnpm@8.9.2",
|
|
"pnpm": {
|
|
"overrides": {}
|
|
}
|
|
}
|