-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.32 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
{
"name": "@guardian/cdk",
"description": "Generic Guardian flavoured AWS CDK components",
"version": "59.5.6",
"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",
"prettier:check": "prettier --check \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"watch": "tsc -w",
"test": "jest --detectOpenHandles --runInBand",
"test:custom-lint-rule": "eslint tools/eslint/rules/*.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": "npx changeset",
"release:docs": "rm -rf target && typedoc && gh-pages -d target -u \"github-actions-bot <support+actions@github.com>\"",
"serve:docs": "rm -rf target && typedoc && serve target",
"cli:dev": "ts-node src/bin/index.ts"
},
"devDependencies": {
"@changesets/cli": "2.27.9",
"@guardian/eslint-config-typescript": "8.0.0",
"@guardian/eslint-plugin-tsdoc-required": "^0.1.3",
"@guardian/tsconfig": "^1.0.0",
"@types/git-url-parse": "^9.0.3",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/lodash.camelcase": "^4.3.9",
"@types/lodash.kebabcase": "^4.1.9",
"@types/lodash.upperfirst": "^4.3.9",
"@types/node": "22.8.4",
"@types/yargs": "^17.0.33",
"aws-cdk": "2.162.1",
"aws-cdk-lib": "2.162.1",
"constructs": "10.4.2",
"eslint": "^8.57.1",
"eslint-plugin-custom-rules": "file:tools/eslint",
"gh-pages": "^6.2.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"serve": "^14.2.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.26.10",
"typescript": "5.1.6"
},
"dependencies": {
"@oclif/core": "3.26.6",
"aws-sdk": "^2.1691.0",
"chalk": "^4.1.2",
"codemaker": "^1.104.0",
"git-url-parse": "^15.0.0",
"js-yaml": "^4.1.0",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.upperfirst": "^4.3.1",
"read-pkg-up": "7.0.1",
"yargs": "^17.7.2"
},
"peerDependencies": {
"aws-cdk": "2.162.1",
"aws-cdk-lib": "2.162.1",
"constructs": "10.4.2"
}
}