-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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
34
35
36
37
38
39
40
{
"name": "aws-cdk-example-dynamic-web-config",
"version": "0.1.0",
"private": true,
"license": "MIT-0",
"scripts": {
"prebuild": "yarn workspace @aws-cdk-example-dynamic-web-config/shared run build",
"build": "yarn workspaces run build",
"start": "yarn workspace @aws-cdk-example-dynamic-web-config/website run start",
"cdk": "yarn workspace @aws-cdk-example-dynamic-web-config/infra cdk",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@types/node": "17.0.9",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"ts-node": "10.4.0",
"typescript": "~4.5.4"
},
"resolutions": {
"nth-check": "2.0.1",
"postcss": "8.2.13"
},
"lint-staged": {
"*": "yarn run lint:fix"
},
"workspaces": [
"packages/*"
]
}