2020-09-21 14:54:16 -05:00
|
|
|
{
|
2022-02-01 14:14:05 -05:00
|
|
|
"private": true,
|
2023-04-17 23:00:47 -04:00
|
|
|
"engines": {
|
|
|
|
"node": ">=16",
|
|
|
|
"pnpm": ">=7"
|
|
|
|
},
|
2022-02-01 14:14:05 -05:00
|
|
|
"scripts": {
|
2023-04-17 23:00:47 -04:00
|
|
|
"dev": "next dev",
|
|
|
|
"build": "next build",
|
|
|
|
"start": "next start",
|
|
|
|
"lint": "next lint",
|
|
|
|
"lint-staged": "lint-staged",
|
|
|
|
"prettier": "prettier --write --ignore-unknown .",
|
|
|
|
"prettier:check": "prettier --check --ignore-unknown .",
|
|
|
|
"test": "pnpm lint && pnpm prettier:check",
|
|
|
|
"test:e2e": "playwright test"
|
2020-10-01 20:38:40 -05:00
|
|
|
},
|
2023-04-17 23:00:47 -04:00
|
|
|
"git": {
|
|
|
|
"pre-commit": "lint-staged"
|
2020-09-29 21:41:26 -05:00
|
|
|
},
|
2023-04-17 23:00:47 -04:00
|
|
|
"lint-staged": {
|
|
|
|
"*": "prettier --write --ignore-unknown"
|
2022-02-09 10:30:59 -05:00
|
|
|
},
|
2023-04-17 23:00:47 -04:00
|
|
|
"dependencies": {
|
2023-06-06 18:36:44 -07:00
|
|
|
"@headlessui/react": "^1.7.15",
|
|
|
|
"@vercel/og": "^0.5.6",
|
2023-04-17 23:00:47 -04:00
|
|
|
"clsx": "^1.2.1",
|
|
|
|
"is-empty-iterable": "^3.0.0",
|
2023-06-17 13:18:00 -05:00
|
|
|
"next": "13.4.6",
|
2023-04-17 23:00:47 -04:00
|
|
|
"react": "18.2.0",
|
|
|
|
"react-cookie": "^4.1.1",
|
|
|
|
"react-dom": "18.2.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-06-06 18:36:44 -07:00
|
|
|
"@playwright/test": "^1.34.3",
|
2023-04-17 23:00:47 -04:00
|
|
|
"@tailwindcss/typography": "^0.5.9",
|
2023-06-06 18:36:44 -07:00
|
|
|
"@types/node": "20.2.5",
|
|
|
|
"@types/react": "18.2.8",
|
2023-05-08 07:22:31 -07:00
|
|
|
"@types/react-dom": "18.2.4",
|
2023-04-17 23:00:47 -04:00
|
|
|
"@vercel/git-hooks": "^1.0.0",
|
2023-05-08 07:22:31 -07:00
|
|
|
"autoprefixer": "^10.4.14",
|
2023-06-06 18:36:44 -07:00
|
|
|
"eslint": "^8.42.0",
|
|
|
|
"eslint-config-next": "^13.4.4",
|
2023-05-08 07:22:31 -07:00
|
|
|
"eslint-config-prettier": "^8.8.0",
|
|
|
|
"eslint-plugin-unicorn": "^47.0.0",
|
|
|
|
"lint-staged": "^13.2.2",
|
2023-06-06 18:36:44 -07:00
|
|
|
"postcss": "^8.4.24",
|
2023-05-08 07:22:31 -07:00
|
|
|
"prettier": "^2.8.8",
|
2023-06-06 18:36:44 -07:00
|
|
|
"prettier-plugin-tailwindcss": "^0.3.0",
|
2023-05-08 07:22:31 -07:00
|
|
|
"tailwindcss": "^3.3.2",
|
2023-06-06 18:36:44 -07:00
|
|
|
"typescript": "5.1.3"
|
2023-04-17 23:00:47 -04:00
|
|
|
}
|
2020-09-21 14:54:16 -05:00
|
|
|
}
|