Initial WallMuse project

This commit is contained in:
fenglee
2026-05-09 09:12:41 +00:00
commit 3ea7d29827
91 changed files with 13136 additions and 0 deletions

25
apps/api/package.json Executable file
View File

@@ -0,0 +1,25 @@
{
"name": "@wallmuse/api",
"version": "0.1.0",
"type": "module",
"main": "dist/server.js",
"scripts": {
"build": "tsc -b",
"typecheck": "tsc -b --pretty false",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"smoke": "tsx src/smoke-test.ts"
},
"dependencies": {
"@wallmuse/api-client": "workspace:*",
"@wallmuse/db": "workspace:*",
"@wallmuse/shared": "workspace:*",
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.1",
"@fastify/jwt": "^10.0.0",
"@fastify/sensible": "^6.0.3",
"bcryptjs": "^3.0.2",
"fastify": "^5.6.2",
"nanoid": "^5.1.6"
}
}