forked from imbytecat/fullstack-starter
- 将 typecheck 脚本改为使用 tsc --noEmit,并添加 @furtherverse/tsconfig 工作区依赖。 - 添加新的本地包 @furtherverse/database 并更新 uuid 依赖至 13.0.0 版本,同时修复相关依赖引用。 - 添加 uuid 依赖以支持生成唯一标识符功能 - 初始化数据库包的配置,设置模块导入导出路径并配置类型检查与格式化脚本。 - 导出 todo 模式定义文件中的所有内容 - 添加待办事项表结构,包含自动生成字段、标题和完成状态字段。 - 添加用于生成主键、创建和更新时间戳字段的实用工具函数,并提供自动生成字段及其键的映射。 - 导出字段工具模块中的所有内容 - 添加 SQLite 数据库连接初始化功能 - 添加数据库包的 TypeScript 配置并继承基础配置文件
64 lines
1.8 KiB
JSON
64 lines
1.8 KiB
JSON
{
|
|
"name": "@furtherverse/monorepo",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"compile": "turbo run compile",
|
|
"deploy": "turbo run deploy",
|
|
"dev": "turbo run dev",
|
|
"fix": "turbo run fix",
|
|
"typecheck": "turbo run typecheck"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.3.11",
|
|
"turbo": "^2.7.4",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"catalog": {
|
|
"@biomejs/biome": "^2.3.11",
|
|
"@effect/platform": "^0.94.1",
|
|
"@effect/schema": "^0.75.5",
|
|
"@orpc/client": "^1.13.4",
|
|
"@orpc/contract": "^1.13.4",
|
|
"@orpc/server": "^1.13.4",
|
|
"@orpc/tanstack-query": "^1.13.4",
|
|
"@orpc/zod": "^1.13.4",
|
|
"@t3-oss/env-core": "^0.13.10",
|
|
"@tailwindcss/vite": "^4.1.18",
|
|
"@tanstack/devtools-vite": "^0.4.1",
|
|
"@tanstack/react-devtools": "^0.9.2",
|
|
"@tanstack/react-query": "^5.90.18",
|
|
"@tanstack/react-query-devtools": "^5.91.2",
|
|
"@tanstack/react-router": "^1.151.0",
|
|
"@tanstack/react-router-devtools": "^1.151.0",
|
|
"@tanstack/react-router-ssr-query": "^1.151.0",
|
|
"@tanstack/react-start": "^1.151.0",
|
|
"@tauri-apps/api": "^2.9.1",
|
|
"@tauri-apps/cli": "^2.9.6",
|
|
"@types/bun": "^1.3.6",
|
|
"@vitejs/plugin-react": "^5.1.2",
|
|
"babel-plugin-react-compiler": "^1.0.0",
|
|
"drizzle-kit": "^0.31.8",
|
|
"drizzle-orm": "^0.45.1",
|
|
"drizzle-zod": "^0.8.3",
|
|
"effect": "^3.19.14",
|
|
"nitro": "npm:nitro-nightly@latest",
|
|
"postgres": "^3.4.8",
|
|
"react": "^19.2.3",
|
|
"react-dom": "^19.2.3",
|
|
"tailwindcss": "^4.1.18",
|
|
"turbo": "^2.7.5",
|
|
"typescript": "^5.9.3",
|
|
"uuid": "^13.0.0",
|
|
"vite": "^8.0.0-beta.8",
|
|
"vite-tsconfig-paths": "^6.0.4",
|
|
"zod": "^4.3.5"
|
|
}
|
|
}
|