-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
80 lines (80 loc) · 2.48 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@guardian/cdk",
"description": "Generic Guardian flavoured AWS CDK components",
"version": "41.1.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"bin": {
"gu-cdk": "bin/gu-cdk"
},
"repository": "github:guardian/cdk",
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"watch": "tsc -w",
"test": "jest --detectOpenHandles --runInBand",
"test:custom-lint-rule": "eslint tools/eslint/rules/valid-constructors.test.ts",
"test:dev": "jest --detectOpenHandles --runInBand --watch",
"prepare": "tsc",
"prepack": "cp -r src/bin/commands/new-project/template lib/bin/commands/new-project/template",
"release": "semantic-release",
"release:docs": "rm -rf target && typedoc && gh-pages -d target -u \"github-actions-bot <[email protected]>\"",
"serve:docs": "rm -rf target && typedoc && serve target",
"update-aws-cdk": "ncu \"aws-cdk-lib\" \"aws-cdk\" \"constructs\" --upgrade --deep --target minor",
"cli:dev": "ts-node src/bin/index.ts"
},
"devDependencies": {
"@guardian/eslint-config-typescript": "1.0.1",
"@types/aws-lambda": "^8.10.93",
"@types/git-url-parse": "^9.0.1",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.5.0",
"@types/lodash.camelcase": "^4.3.7",
"@types/lodash.kebabcase": "^4.1.7",
"@types/lodash.upperfirst": "^4.3.7",
"@types/node": "17.0.31",
"@types/yargs": "^17.0.10",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.14.0",
"eslint-plugin-custom-rules": "file:tools/eslint",
"gh-pages": "^3.2.3",
"jest": "^27.5.1",
"npm-check-updates": "^12.5.9",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"serve": "^13.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typedoc": "^0.22.14",
"typescript": "~4.6.3"
},
"dependencies": {
"@oclif/core": "1.7.0",
"aws-cdk-lib": "2.20.0",
"aws-sdk": "^2.1113.0",
"chalk": "^4.1.2",
"codemaker": "^1.57.0",
"constructs": "10.0.110",
"git-url-parse": "^11.6.0",
"inquirer": "^8.2.2",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.upperfirst": "^4.3.1",
"read-pkg-up": "7.0.1",
"yargs": "^17.4.0"
},
"peerDependencies": {
"aws-cdk": "2.20.0",
"aws-cdk-lib": "2.20.0",
"constructs": "10.0.110"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}