forked from aws-samples/aws-sdk-js-notes-app
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
32 lines (32 loc) · 927 Bytes
/
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
{
"private": true,
"workspaces": [
"packages/infra",
"packages/backend",
"packages/frontend"
],
"scripts": {
"cdk": "cd packages/infra && yarn cdk",
"cdklocal": "cd packages/infra && yarn cdklocal",
"build:backend": "cd packages/backend && yarn build",
"prepare:frontend": "node packages/scripts/populate-frontend-config.js",
"prepare:frontend-local": "node packages/scripts/populate-frontend-config.js --local",
"build:frontend": "cd packages/frontend && yarn build",
"start:frontend": "cd packages/frontend && yarn start",
"serve:frontend": "cd packages/frontend && yarn build && yarn serve"
},
"devDependencies": {
"husky": "^4.2.3",
"lint-staged": "^10.1.2",
"prettier": "2.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,md}": "prettier --write"
},
"packageManager": "[email protected]"
}