feat(create-turbo): create basic

This commit is contained in:
Turbobot
2024-01-10 12:41:11 +07:00
committed by Thanu Poptiphueng
commit af28fc43a4
59 changed files with 6625 additions and 0 deletions

26
packages/ui/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "@repo/ui",
"version": "0.0.0",
"private": true,
"exports": {
"./button": "./src/button.tsx",
"./card": "./src/card.tsx",
"./code": "./src/code.tsx"
},
"scripts": {
"lint": "eslint . --max-warnings 0",
"generate:component": "turbo gen react-component"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^1.11.3",
"@types/node": "^20.10.6",
"@types/eslint": "^8.56.1",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"eslint": "^8.56.0",
"react": "^18.2.0",
"typescript": "^5.3.3"
}
}