forked from aws-samples/aws-sdk-js-notes-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 734 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 734 Bytes
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
{
"private": true,
"workspaces": [
"packages/infra",
"packages/backend",
"packages/frontend"
],
"scripts": {
"cdk": "cd packages/infra && yarn cdk",
"build:backend": "cd packages/backend && yarn build",
"prepare:frontend": "node packages/scripts/populate-frontend-config.js",
"build:frontend": "cd packages/frontend && yarn build",
"start:frontend": "cd packages/frontend && yarn start"
},
"devDependencies": {
"esbuild": "^0.20.2",
"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": "yarn@4.4.0"
}