This repository has been archived by the owner on Nov 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.59 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "dootstrapper",
"description": "Development bootstrapper project",
"main": "index.js",
"private": true,
"engineStrict": true,
"engines": {
"node": ">=10.15 <12.14"
},
"repository": {
"type": "git",
"url": "https://github.com/nextfaze/dootstrapper"
},
"homepage": "https://github.com/nextfaze/dootstrapper/blob/master/README.md",
"devDependencies": {
"@aws-cdk/assert": "^1.46.0",
"@bazel/bazel": "^2.1.0",
"@bazel/buildifier": "^3.2.1",
"@bazel/ibazel": "^0.13.1",
"@bazel/jasmine": "^1.7.0",
"@bazel/rollup": "^1.7.0",
"@bazel/typescript": "^1.7.0",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@types/aws-lambda": "^8.10.56",
"@types/jasmine": "^3.5.11",
"@types/node": "14.0.13",
"aws-sdk": "^2.702.0",
"commitlint": "^9.0.1",
"husky": "^4.2.5",
"jasmine": "^3.5.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rollup": "^2.18.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules-recommended": "^1.2.2",
"tslint-plugin-prettier": "^2.3.0",
"typedoc": "^0.17.7",
"typedoc-plugin-no-inherit": "^1.1.10",
"typescript": "~3.9.5"
},
"scripts": {
"build": "bazel build ${TARGET:-//...}",
"check": "bazel version",
"test": "bazel test //...",
"build:docs": "typedoc",
"pack": "bazel run //package:dootstrapper.pack",
"publish": "bazel run //package:dootstrapper.publish",
"build:watch": "ibazel build //...",
"test:watch": "ibazel test //...",
"bazel:format": "find . -type f \\( -name \"*.bzl\" -or -name WORKSPACE -or -name BUILD -or -name BUILD.bazel \\) ! -path \"*/node_modules/*\" | xargs buildifier -v --warnings=attr-cfg,attr-license,attr-non-empty,attr-output-default,attr-single-file,constant-glob,ctx-actions,ctx-args,depset-iteration,depset-union,dict-concatenation,duplicated-name,filetype,git-repository,http-archive,integer-division,load,load-on-top,native-build,native-package,out-of-order-load,output-group,package-name,package-on-top,positional-args,redefined-variable,repository-name,same-origin-load,string-iteration,unsorted-dict-items,unused-variable",
"bazel:lint": "npm run bazel:format -- --lint=warn",
"bazel:lint-fix": "npm run bazel:format -- --lint=fix",
"format:check": "prettier --check ./**/*.ts",
"format:write": "prettier --write ./**/*.ts",
"synth": "cdk synth",
"deploy": "cdk deploy",
"lint": "tslint --project ./",
"clean": "bazel clean",
"clean:deep": "bazel clean --expunge"
},
"dependencies": {
"@aws-cdk/aws-certificatemanager": "^1.46.0",
"@aws-cdk/aws-cloudfront": "^1.46.0",
"@aws-cdk/aws-cloudtrail": "^1.46.0",
"@aws-cdk/aws-codebuild": "^1.46.0",
"@aws-cdk/aws-codepipeline": "^1.46.0",
"@aws-cdk/aws-codepipeline-actions": "^1.46.0",
"@aws-cdk/aws-events": "^1.46.0",
"@aws-cdk/aws-events-targets": "^1.46.0",
"@aws-cdk/aws-iam": "^1.46.0",
"@aws-cdk/aws-lambda": "^1.46.0",
"@aws-cdk/aws-route53": "^1.46.0",
"@aws-cdk/aws-s3": "^1.46.0",
"@aws-cdk/aws-sns": "^1.46.0",
"@aws-cdk/aws-sns-subscriptions": "^1.46.0",
"@aws-cdk/aws-ssm": "^1.46.0",
"@aws-cdk/core": "^1.46.0",
"@slack/web-api": "^5.10.0",
"aws-cdk": "^1.46.0",
"change-case": "^4.1.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}