This commit is contained in:
Nikita
2024-07-15 20:08:18 +04:00
commit 228faf226a
19 changed files with 335 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "learn-anything",
"scripts": {
"dev": "bun web",
"web": "cd web && bun dev",
"web:build": "bun run --filter '*' build"
},
"devDependencies": {
"bun-types": "^1.1.18"
},
"workspaces": [
"web"
],
"prettier": {
"useTabs": true,
"semi": false,
"trailingComma": "none",
"printWidth": 120,
"arrowParens": "avoid"
},
"private": true
}