-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·27 lines (27 loc) · 1.12 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
{
"name": "ambroseus-store",
"version": "0.1.0",
"private": true,
"workspaces": [
"client"
],
"scripts": {
"client:build": "lerna run build --scope 'store-spa' --stream",
"client:deploy": "sls client deploy --no-config-change --no-policy-change --no-cors-change",
"client:deploy:nc": "yarn client:deploy --no-confirm",
"client:build:deploy": "yarn run client:build && yarn client:deploy",
"client:build:deploy:nc": "yarn run client:build && yarn client:deploy:nc",
"cloudfront:setup": "sls deploy",
"cloudfront:domainInfo": "sls domainInfo",
"cloudfront:invalidate": "sls invalidateCloudFrontCache",
"cloudfront:build:deploy": "yarn client:build:deploy && yarn cloudfront:invalidate",
"cloudfront:build:deploy:nc": "yarn client:build:deploy:nc && yarn cloudfront:invalidate",
"cloudfront:update:build:deploy": "yarn cloudfront:setup && yarn cloudfront:build:deploy",
"cloudfront:update:build:deploy:nc": "yarn cloudfront:setup && yarn cloudfront:build:deploy:nc"
},
"devDependencies": {
"lerna": "5.1.8",
"serverless": "3.20.0",
"serverless-finch": "4.0.0"
}
}