init project

This commit is contained in:
root
2026-04-13 13:59:26 -04:00
parent f190e6b91a
commit e26e15f98f
54 changed files with 3280 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"name": "telegram-like-messenger",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"schema:lint": "graphql-schema-linter packages/graphql-schema/schema.graphql",
"codegen": "graphql-codegen --config packages/graphql-schema/codegen.ts",
"codegen:check": "graphql-codegen --config packages/graphql-schema/codegen.ts",
"build": "npm run prisma:generate -w @tlm/api && npm run build -w @tlm/api && npm run build -w @tlm/web",
"dev:api": "npm run start:dev -w @tlm/api",
"dev:web": "npm run dev -w @tlm/web",
"db:generate": "npm run prisma:generate -w @tlm/api",
"db:migrate": "npm run prisma:migrate -w @tlm/api"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.9",
"graphql": "^16.9.0",
"graphql-schema-linter": "^3.0.1",
"typescript": "^5.6.3"
}
}