mirror of
https://github.com/samuelcolvin/FastUI.git
synced 2023-12-01 22:22:11 +03:00
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"private": true,
|
|
"type": "module",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run --workspace=@pydantic/fastui-prebuilt dev",
|
|
"build": "npm run --workspaces prepublishOnly",
|
|
"typecheck": "npm run --workspaces typecheck",
|
|
"lint": "eslint packages --ext .ts,.tsx --report-unused-disable-directives --max-warnings 0",
|
|
"lint-fix": "npm run lint -- --fix",
|
|
"prettier": "prettier --write",
|
|
"format": "npm run prettier -- . && npm run lint-fix"
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"semi": false,
|
|
"trailingComma": "all",
|
|
"tabWidth": 2,
|
|
"printWidth": 119,
|
|
"bracketSpacing": true
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.9.1",
|
|
"@types/react": "^18.2.15",
|
|
"@types/react-dom": "^18.2.7",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"eslint": "^8.53.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-config-standard": "^17.1.0",
|
|
"eslint-plugin-react": "^7.33.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.4",
|
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
"prettier": "^3.0.3",
|
|
"typescript": "^5.0.2"
|
|
}
|
|
}
|