-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 939 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
27
28
29
30
31
32
33
34
35
{
"name": "todo-api",
"version": "0.1.0",
"bin": {
"order": "bin/stack.js"
},
"scripts": {
"cdk": "cdk",
"sso": "aws sso login --profile todo-api",
"build": "docker compose -f docker-compose.yml build",
"push": "docker compose -f docker-compose.yml push",
"unit": "dotnet test ./src/Todo.UnitTests",
"integration": "dotnet test ./src/Todo.IntegrationTests",
"e2e": "dotnet test ./src/Todo.EndToEndTests",
"format": "dotnet csharpier .",
"gen-client": "dotnet run --project ./src/Todo.Api --generateclients true"
},
"devDependencies": {
"@types/node": "20.11.26",
"aws-cdk": "2.133.0",
"esbuild": "0.20.0",
"ts-node": "10.9.1",
"typescript": "5.4.2"
},
"dependencies": {
"aws-cdk-lib": "2.133.0",
"constructs": "^10.0.0",
"dotenv": "16.3.1",
"env-var": "7.4.1",
"source-map-support": "0.5.21"
},
"prettier": {
"printWidth": 120
}
}