* feat: Add GitHub Actions workflow for Amplify deployment and configuration * feat: Update Amplify deployment workflow and add Serverless deployment workflow * feat: Set environment variables for Amplify monorepo deployment * feat: Refactor Amplify deployment configuration for monorepo structure * feat: Update environment variable naming and refactor image URL handling across the application * feat: Add Jest configuration and tests for project and user handlers
37 lines
981 B
JSON
37 lines
981 B
JSON
{
|
|
"name": "tasker-server",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"infra:init": "cd terraform && terraform init",
|
|
"infra:plan": "cd terraform && terraform plan",
|
|
"infra:apply": "cd terraform && terraform apply",
|
|
"infra:destroy": "cd terraform && terraform destroy",
|
|
"sls:package": "sls package",
|
|
"sls:deploy": "sls deploy",
|
|
"sls:remove": "sls remove",
|
|
"test": "jest --coverage",
|
|
"test:ci": "jest --no-coverage --ci"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"dependencies": {
|
|
"@aws-sdk/client-dynamodb": "^3.699.0",
|
|
"@aws-sdk/lib-dynamodb": "^3.699.0",
|
|
"@types/uuid": "^10.0.0",
|
|
"aws-sdk": "^2.1692.0",
|
|
"uuid": "^11.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22.9.1",
|
|
"eslint": "^9.15.0",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.3.3",
|
|
"serverless-prune-plugin": "^2.1.0",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "^5.6.3"
|
|
}
|
|
}
|