45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "keycard-website",
|
|
"scripts": {
|
|
"prepare": "husky",
|
|
"dev": "pnpm install && next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"format": "prettier --write . --ignore-path .gitignore",
|
|
"check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"cva": "1.0.0-beta.1",
|
|
"next": "14.2.15",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
|
|
"@types/node": "^20",
|
|
"@types/react": "^18.3.11",
|
|
"@types/react-dom": "^18.3.1",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-next": "14.2.15",
|
|
"eslint-plugin-tailwindcss": "^3.17.5",
|
|
"husky": "^9.1.6",
|
|
"lint-staged": "^15.2.10",
|
|
"postcss": "^8.4.47",
|
|
"prettier": "^3.3.3",
|
|
"prettier-plugin-tailwindcss": "^0.6.8",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5.6.3",
|
|
"typescript-eslint": "^8.10.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,mjs,ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.css": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|