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": {
|
|
|
|
|
"dev": "next dev",
|
2023-06-05 23:27:05 +02:00
|
|
|
"test": "concurrently --kill-others-on-fail 'npm:test:unit' 'npm:test:integration'",
|
|
|
|
|
"test:watch": "concurrently --kill-others 'npm:test:unit:watch' 'npm:test:integration:watch'",
|
|
|
|
|
"test:unit": "jest",
|
|
|
|
|
"test:unit:watch": "jest --watch",
|
|
|
|
|
"test:integration": "start-server-and-test dev http://localhost:3000 \"test:integration:run\"",
|
|
|
|
|
"test:integration:watch": "start-server-and-test dev http://localhost:3000 \"pnpm nodemon --verbose -e js,jsx,ts,tsx,css,scss --ignore \\\"__test__/**\\\" --exec \\\"pnpm run test:integration:run\\\"\"",
|
|
|
|
|
"test:integration:run": "cypress run --quiet",
|
|
|
|
|
"test:integration:open": "cypress open",
|
2023-04-28 10:16:04 +02:00
|
|
|
"lint": "next lint && prettier --check .",
|
2023-05-05 10:26:32 +02:00
|
|
|
"lint:fix": "prettier --write .",
|
2023-04-03 13:39:51 +02:00
|
|
|
"lint-staged": "lint-staged",
|
2023-06-05 23:27:05 +02:00
|
|
|
"build": "next build",
|
|
|
|
|
"prestart": "build",
|
2023-04-03 13:39:51 +02:00
|
|
|
"start": "next start",
|
2023-06-05 13:02:36 +02:00
|
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next",
|
|
|
|
|
"storybook": "storybook dev -p 6006",
|
|
|
|
|
"build-storybook": "storybook build"
|
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-05-17 15:25:25 +02:00
|
|
|
"moment": "^2.29.4",
|
2023-05-15 09:23:59 +02:00
|
|
|
"next": "13.4.2",
|
2023-04-19 10:37:35 +02:00
|
|
|
"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",
|
2023-04-24 15:32:57 +02:00
|
|
|
"sass": "^1.62.0",
|
2023-06-05 13:02:36 +02:00
|
|
|
"tinycolor2": "1.4.2",
|
|
|
|
|
"uuid": "^9.0.0"
|
2023-04-03 13:39:51 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@bufbuild/buf": "^1.14.0",
|
2023-06-05 13:02:36 +02:00
|
|
|
"@jest/types": "^29.5.0",
|
|
|
|
|
"@storybook/addon-essentials": "^7.0.18",
|
|
|
|
|
"@storybook/addon-interactions": "^7.0.18",
|
|
|
|
|
"@storybook/addon-links": "^7.0.18",
|
|
|
|
|
"@storybook/addon-postcss": "^2.0.0",
|
|
|
|
|
"@storybook/blocks": "^7.0.18",
|
|
|
|
|
"@storybook/nextjs": "^7.0.18",
|
|
|
|
|
"@storybook/react": "^7.0.18",
|
|
|
|
|
"@storybook/testing-library": "^0.1.0",
|
|
|
|
|
"@storybook/testing-react": "2.0.1",
|
|
|
|
|
"@storybook/types": "7.1.0-alpha.26",
|
|
|
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
|
|
|
"@testing-library/react": "^14.0.0",
|
|
|
|
|
"@types/forever-monitor": "^1.7.6",
|
2023-05-25 16:19:58 +02:00
|
|
|
"@types/jest": "^29.5.1",
|
2023-04-03 13:39:51 +02:00
|
|
|
"@types/ms": "0.7.31",
|
|
|
|
|
"@types/node": "18.11.9",
|
2023-06-05 17:46:17 +02:00
|
|
|
"@types/react": "18.2.8",
|
2023-04-03 13:39:51 +02:00
|
|
|
"@types/react-dom": "18.0.9",
|
2023-06-05 13:02:36 +02:00
|
|
|
"@types/testing-library__jest-dom": "^5.14.6",
|
2023-04-03 13:39:51 +02:00
|
|
|
"@types/tinycolor2": "1.4.3",
|
2023-06-05 13:02:36 +02:00
|
|
|
"@types/uuid": "^9.0.1",
|
2023-04-03 13:39:51 +02:00
|
|
|
"@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",
|
2023-06-05 23:27:05 +02:00
|
|
|
"concurrently": "^8.1.0",
|
|
|
|
|
"cypress": "^12.13.0",
|
2023-04-03 13:39:51 +02:00
|
|
|
"del-cli": "5.0.0",
|
2023-04-19 10:37:35 +02:00
|
|
|
"eslint-config-zitadel": "workspace:*",
|
2023-06-05 13:02:36 +02:00
|
|
|
"eslint-plugin-storybook": "^0.6.12",
|
2023-04-03 13:39:51 +02:00
|
|
|
"grpc-tools": "1.11.3",
|
2023-05-25 16:19:58 +02:00
|
|
|
"jest": "^29.5.0",
|
2023-06-05 13:02:36 +02:00
|
|
|
"jest-environment-jsdom": "^29.5.0",
|
|
|
|
|
"jest-fetch-mock": "^3.0.3",
|
2023-06-05 23:27:05 +02:00
|
|
|
"jest-silent-reporter": "^0.5.0",
|
2023-04-03 13:39:51 +02:00
|
|
|
"lint-staged": "13.0.3",
|
|
|
|
|
"make-dir-cli": "3.0.0",
|
2023-06-05 13:02:36 +02:00
|
|
|
"next-router-mock": "^0.9.3",
|
2023-06-05 23:27:05 +02:00
|
|
|
"nodemon": "^2.0.22",
|
2023-04-03 13:39:51 +02:00
|
|
|
"postcss": "8.4.21",
|
|
|
|
|
"prettier-plugin-tailwindcss": "0.1.13",
|
2023-06-05 23:27:05 +02:00
|
|
|
"start-server-and-test": "^2.0.0",
|
2023-06-05 13:02:36 +02:00
|
|
|
"storybook": "^7.0.18",
|
|
|
|
|
"storybook-css-modules-preset": "^1.1.1",
|
2023-04-03 13:39:51 +02:00
|
|
|
"tailwindcss": "3.2.4",
|
2023-05-25 16:19:58 +02:00
|
|
|
"ts-jest": "^29.1.0",
|
2023-05-25 17:11:36 +02:00
|
|
|
"ts-node": "^10.9.1",
|
2023-04-03 13:39:51 +02:00
|
|
|
"ts-proto": "^1.139.0",
|
2023-06-05 23:27:05 +02:00
|
|
|
"typescript": "5.0.4",
|
2023-06-05 13:02:36 +02:00
|
|
|
"whatwg-fetch": "^3.6.2",
|
2023-05-15 09:23:59 +02:00
|
|
|
"zitadel-tailwind-config": "workspace:*"
|
2023-04-03 13:39:51 +02:00
|
|
|
}
|
2023-05-25 17:11:36 +02:00
|
|
|
}
|