-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
41
{
"name": "root",
"private": true,
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-angular": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"husky": "^8.0.3",
"lerna": "^6.6.1",
"lint-staged": "13.2.2",
"prettier": "2.8.8"
},
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"organization": true
},
"scripts": {
"prepare": "husky install",
"bootstrap": "lerna bootstrap --include-dependencies",
"clean": "lerna clean --yes",
"build:code": "lerna run compile --scope @aiaa-lambda/*",
"test:code": "lerna run test --scope @aiaa-lambda/*",
"pack:code": "lerna run build:prod --scope @aiaa-lambda/*",
"build:infra": "lerna run build --scope @aiaa/*",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
]
}
}