-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 1.05 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
{
"name": "cdk-serverless-example",
"version": "0.1.0",
"private": true,
"workspaces": [
"services/*",
"frontend",
"scripts"
],
"license": "MIT",
"scripts": {
"build": "lerna run build",
"bootstrap": "cdk bootstrap",
"deploy:services": "lerna run deploy --scope 'services-*'",
"deploy:frontend": "lerna run deploy --scope 'frontend'",
"destroy": "lerna run destroy",
"lint": "lerna exec yarn lint",
"test": "lerna exec yarn test",
"prettier": "lerna exec yarn prettier",
"prettier:ci": "lerna exec yarn prettier:ci",
"auth0:create": "node scripts/auth0.js create",
"auth0:update": "node scripts/auth0.js update",
"env:sync": "node scripts/env.js sync",
"aws:invalidateCloudfrontCache": "node scripts/aws.js invalidateCloudfrontCache",
"deploy:all": "yarn build && yarn auth0:create && yarn env:sync && yarn deploy:services && yarn deploy:frontend && yarn auth0:update && yarn aws:invalidateCloudfrontCache"
},
"devDependencies": {
"lerna": "^8.0.0",
"prettier": "^3.0.0"
}
}