-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.27 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
{
"name": "autodump",
"description": "An AWS CDK project that natively exports databases to S3 through tags.",
"version": "1.1.2-alpha.0",
"repository": {
"type": "git",
"url": "git@github.com:truemark/autodump.git"
},
"scripts": {
"install-handlers": "cd handlers && pnpm i --frozen-lockfile",
"install-cdk": "cd cdk && pnpm i --frozen-lockfile",
"install-all": "concurrently \"pnpm:install-handlers\" \"pnpm:install-cdk\" -c blue,green",
"postinstall": "pnpm run install-all",
"build-handlers": "cd handlers && pnpm run build",
"build-cdk": "cd cdk && pnpm run build",
"build": "concurrently \"pnpm:build-handlers\" \"pnpm:build-cdk\" -c blue,green",
"test-handlers": "cd handlers && pnpm run test",
"test-cdk": "cd cdk && pnpm run test",
"test": "concurrently \"pnpm:test-handlers\" \"pnpm:test-cdk\" -c blue,green",
"fmt-handlers": "cd handlers && pnpm run fmt",
"fmt-cdk": "cd cdk && pnpm run fmt",
"fmt": "concurrently \"pnpm:fmt-handlers\" \"pnpm:fmt-cdk\" -c blue,green",
"watch-handlers": "cd handlers && pnpm run watch",
"watch-cdk": "cd cdk && cdk watch AutoDump",
"watch": "concurrently \"pnpm:watch-handlers\" \"pnpm:watch-cdk\" -c red,green"
},
"devDependencies": {
"concurrently": "^9.1.0"
}
}