34 lines
921 B
JSON
34 lines
921 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "dotenv -e .env turbo run build",
|
|
"dev": "dotenv -e .env.local turbo run dev",
|
|
"lint": "dotenv -e .env.local turbo run lint",
|
|
"lint:fix": "dotenv -e .env.local turbo run lint:fix",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
|
|
"prepare": "husky install",
|
|
"precommit": "pnpm format && pnpm lint:fix",
|
|
"clean": "turbo run clean"
|
|
},
|
|
"devDependencies": {
|
|
"dotenv-cli": "^7.3.0",
|
|
"eslint": "^8.48.0",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^15.0.2",
|
|
"prettier": "^3.0.3",
|
|
"prettier-plugin-tailwindcss": "^0.5.6",
|
|
"@repo/tsconfig": "workspace:*",
|
|
"turbo": "latest"
|
|
},
|
|
"name": "Evo.External.App",
|
|
"packageManager": "pnpm@8.9.0",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"eslint --ignore-pattern **/graphql/* --ext js,jsx,ts,tsx --quiet --fix --"
|
|
]
|
|
}
|
|
}
|