Files
zitadel/apps/login/package.json

60 lines
1.6 KiB
JSON
Raw Normal View History

2023-04-03 13:39:51 +02:00
{
2023-04-13 09:28:55 +02:00
"name": "@zitadel/login",
2023-04-03 13:39:51 +02:00
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"lint-staged": "lint-staged",
"start": "next start",
"test": "yarn prettier:check &nexarn lint",
2023-04-03 15:38:50 +02:00
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next"
2023-04-03 13:39:51 +02:00
},
"git": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
2023-04-19 10:37:35 +02:00
"@headlessui/react": "^1.7.14",
2023-04-03 13:39:51 +02:00
"@heroicons/react": "2.0.13",
"@tailwindcss/forms": "0.5.3",
2023-04-20 14:39:51 +02:00
"@vercel/analytics": "^1.0.0",
2023-04-19 10:37:35 +02:00
"@zitadel/next": "workspace:*",
"@zitadel/react": "workspace:*",
"@zitadel/server": "workspace:*",
2023-04-03 13:39:51 +02:00
"clsx": "1.2.1",
"date-fns": "2.29.3",
2023-04-19 10:37:35 +02:00
"next": "13.3.1-canary.13",
"next-themes": "^0.2.1",
2023-04-03 13:39:51 +02:00
"nice-grpc": "2.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.39.5",
"styled-components": "6.0.0-beta.2",
2023-04-03 15:38:50 +02:00
"tinycolor2": "1.4.2"
2023-04-03 13:39:51 +02:00
},
"devDependencies": {
"@bufbuild/buf": "^1.14.0",
"@types/ms": "0.7.31",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@types/tinycolor2": "1.4.3",
"@vercel/git-hooks": "1.0.0",
2023-04-19 10:37:35 +02:00
"@zitadel/tsconfig": "workspace:*",
2023-04-03 13:39:51 +02:00
"autoprefixer": "10.4.13",
"del-cli": "5.0.0",
2023-04-19 10:37:35 +02:00
"eslint-config-zitadel": "workspace:*",
2023-04-03 13:39:51 +02:00
"grpc-tools": "1.11.3",
"lint-staged": "13.0.3",
"make-dir-cli": "3.0.0",
"postcss": "8.4.21",
"prettier-plugin-tailwindcss": "0.1.13",
"tailwindcss": "3.2.4",
"ts-proto": "^1.139.0",
"typescript": "4.8.4"
}
}