mirror of
https://github.com/samuelcolvin/FastUI.git
synced 2023-12-01 22:22:11 +03:00
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "fastui",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"entry": "src/index.tsx",
|
|
"scripts": {
|
|
"dev": "vite demo",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc",
|
|
"typewatch": "tsc --noEmit --watch",
|
|
"lint": "eslint react --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
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.15",
|
|
"@types/react-dom": "^18.2.7",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"@vitejs/plugin-react-swc": "^3.3.2",
|
|
"bootstrap": "^5.3.2",
|
|
"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",
|
|
"vite": "^4.4.5"
|
|
}
|
|
}
|