-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.17 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
{
"license": "MIT",
"dependencies": {
"commitizen": "^4.0.4",
"lerna": "^3.20.2"
},
"name": "mattgilbride",
"scripts": {
"bootstrap": "lerna bootstrap",
"commit": "yarn chk && git-cz",
"tsc": "lerna run tsc --stream --",
"lint": "lerna run lint --stream --",
"test": "lerna run test --stream --",
"chk": "yarn tsc && yarn lint --fix && yarn test",
"dev": "lerna run dev --scope=@mattgilbride/app --stream",
"build": "lerna run build --scope=@mattgilbride/app --stream",
"start": "lerna run start --scope=@mattgilbride/app --stream",
"export": "lerna run export --scope=@mattgilbride/app --stream",
"serve": "lerna run serve --scope=@mattgilbride/app --stream",
"deploy-site": "cd packages/app && yarn deploy && cd ../..",
"deploy-aws": "cd packages/aws-infrastructure && yarn deploy && cd ../..",
"synth": "cd packages/aws-infrastructure && yarn synth && cd ../..",
"destroy": "cd packages/aws-infrastructure && yarn destroy && cd ../.."
},
"devDependencies": {
"cz-conventional-changelog": "3.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}