-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.08 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
{
"name": "@clickup/ci-storage-cdk",
"description": "A CDK construct to deploy ci-storage infrastructure",
"version": "2.11.1",
"license": "MIT",
"keywords": [
"cdk",
"ci-storage",
"construct"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch --preserveWatchOutput",
"lint": "bash internal/lint.sh",
"test": "tsc && jest",
"docs": "bash internal/docs.sh",
"clean": "bash internal/clean.sh",
"copy-package-to-public-dir": "copy-package-to-public-dir.sh",
"backport-package-from-public-dir": "backport-package-from-public-dir.sh",
"deploy": "$npm_execpath run clean && $npm_execpath install && $npm_execpath run test && $npm_execpath publish --access=public"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.14.175",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-typescript-enum": "^2.1.0",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint": "^8.40.0",
"jest": "^29.7.0",
"prettier": "3.2.1",
"ts-jest": "^29.1.1",
"typedoc-plugin-markdown": "^3.16.0",
"typedoc-plugin-merge-modules": "^5.1.0",
"typedoc": "^0.25.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@clickup/instance-to-ami-cdk": "^2.10.295",
"aws-cdk-lib": "^2.154.1",
"aws-cdk": "^2.154.1",
"cdk-ec2-key-pair": "^3.3.3",
"constructs": "^10.3.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"multi-convention-namer": "^0.1.12"
},
"repository": {
"type": "git",
"url": "git://github.com/clickup/ci-storage-cdk"
}
}