-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.36 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
42
{
"name": "cdk-constructs",
"private": true,
"scripts": {
"lint": "eslint --ext .ts packages/",
"lint-fix": "eslint --fix --ext .ts packages/",
"build": "lerna run build",
"docgen": "lerna run docgen",
"package": "lerna run package",
"test": "lerna run test",
"upgrade:cdk": "lerna run upgrade:cdk && yarn",
"upgrade:root": "yarn upgrade",
"bump:patch": "lerna version patch",
"bump:minor": "lerna version minor",
"bump:major": "lerna verison major",
"publish:npm": "lerna run publish:npm",
"publish:pypi": "lerna run publish:pypi"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^16.4.5",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.4.7",
"jest-junit": "^12",
"jsii": "^1.52.1",
"jsii-diff": "^1.52.1",
"jsii-docgen": "^6.0.2",
"jsii-pacmak": "^1.52.1",
"npm-check-updates": "^11",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"lerna": "^3.22.1"
},
"workspaces": [
"packages/*"
]
}