38 lines
867 B
JSON
38 lines
867 B
JSON
{
|
|
"name": "web",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"check-types": "tsc --noEmit",
|
|
"lint-staged": "lint-staged"
|
|
},
|
|
"dependencies": {
|
|
"@repo/ui": "workspace:*",
|
|
"next": "catalog:",
|
|
"react": "catalog:",
|
|
"react-dom": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@repo/eslint-config": "workspace:*",
|
|
"@repo/typescript-config": "workspace:*",
|
|
"@types/node": "catalog:",
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:",
|
|
"autoprefixer": "catalog:",
|
|
"lint-staged": "^15.2.10",
|
|
"postcss": "catalog:",
|
|
"tailwindcss": "catalog:",
|
|
"typescript": "catalog:"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,md,json}": [
|
|
"eslint --fix"
|
|
]
|
|
}
|
|
}
|