mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-11 01:41:46 +00:00
* chore: fix dashboard readme * feat: add prettier config * chore: update Node version requirement to 18.17.0 * Remove extra space * Update @tailwind/forms * Testing --------- Co-authored-by: mohamed.elzanaty3 <mohamed.elzanaty3@vodafone.com> Co-authored-by: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com> Co-authored-by: Delba de Oliveira <delbabrown@gmail.com>
27 lines
689 B
JSON
27 lines
689 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint . --ext .cjs,.js,.jsx,.mjs,.ts,.tsx",
|
|
"prettier": "prettier --write --ignore-unknown .",
|
|
"prettier:check": "prettier --check --ignore-unknown .",
|
|
"start": "next start",
|
|
"test": "npm run lint && npm run prettier:check"
|
|
},
|
|
"dependencies": {
|
|
"@tailwindcss/forms": "^0.5.7",
|
|
"next": "^14.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/style-guide": "^5.0.1",
|
|
"eslint": "8.52.0",
|
|
"eslint-config-next": "14.0.0",
|
|
"eslint-config-prettier": "9.0.0",
|
|
"prettier": "3.0.3",
|
|
"prettier-plugin-tailwindcss": "0.5.4"
|
|
},
|
|
"packageManager": "pnpm@8.7.0",
|
|
"engines": {
|
|
"node": ">=18.17.0"
|
|
}
|
|
}
|