βοΈProject configuration
Node
{
"name": "my-multijet-project",
"private": true,
"workspaces": [
"microservices/*",
"libs/*"
],
"scripts": {
"ts": "esr",
"build": "npm run openapi:generate && turbo run build",
"build:debug": "npm run openapi:generate && turbo run build:debug",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test --parallel",
"typecheck": "turbo run typecheck",
"openapi:generate": "turbo run openapi:generate",
// AWS SAM specific commands
"presam:build": "npm run build",
"sam:build": "sam build -t deploy/aws/sam/template.yaml --parallel",
"presam:start": "npm run sam:build",
"sam:start": "sam local start-api -t deploy/aws/sam/template.yaml"
},
"dependencies": {
"esbuild": "...",
"fastify": "...",
"turbo": "..."
},
"devDependencies": {
...
}
"packageManager": "npm@8.11.0",
}
TypeScript
Last updated