-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 869 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "translation-fullstack-app",
"version": "1.0.0",
"description": "full stack app",
"author": "Ellen Kramp",
"license": "ISC",
"scripts": {
"frontend:dev": "npm run dev --workspace=@tfa/translation-app",
"frontend:build": "npm run build --workspace=@tfa/translation-app",
"cdk:deploy": "cd infrastructure; cdk deploy -f --require-approval never",
"cdk:destroy": "cd infrastructure; cdk destroy -f --require-approval never",
"lambda-layer:build-utils": "npm run build --workspace=@tfa/utils-lambda-layer",
"lambda-layer:watch-utils": "npm run watch --workspace=@tfa/utils-lambda-layer"
},
"workspaces": [
"apps/*",
"infrastructure",
"packages/**"
],
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.699.0",
"@aws-sdk/util-dynamodb": "^3.699.0",
"esbuild": "0.24.0"
},
"private": true
}