-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 KB
/
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
36
37
{
"name": "cdk-dynamodb-migrator-project",
"description": "Set of enablers to migrate DynamoDB tables (and more!) using AWS CDK",
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "20.8.9",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"aws-cdk": "2.103.1",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"nx": "17.0.2",
"prettier": "3.0.3",
"syncpack": "^11.2.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"license": "MIT",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "pnpm nx run-many --all --target=build",
"deploy": "pnpm nx run-many --all --target=deploy",
"format-package": "syncpack format",
"package": "pnpm nx run-many --all --target=package",
"test": "pnpm nx run-many --all --target=test",
"test-linter": "pnpm nx run-many --all --target=test-linter",
"test-type": "pnpm nx run-many --all --target=test-type",
"test-unit": "pnpm nx run-many --all --target=test-unit"
},
"workspaces": [
"demo/*",
"cdk-dynamodb-migrator",
"packages/*"
]
}