-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.47 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": "cdk-typescript-tooling",
"version": "0.0.0-development",
"description": "",
"keywords": [],
"homepage": "https://github.com/xolvio/cdk-typescript-tooling#readme",
"bugs": {
"url": "https://github.com/xolvio/cdk-typescript-tooling/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xolvio/cdk-typescript-tooling.git"
},
"license": "ISC",
"author": "Lukasz Gandecki <lukasz@xolv.io>",
"main": "build/typeScriptFunction.js",
"bin": {
"update-typescript-function": "build/update-typescript-function.js"
},
"scripts": {
"build": "rm -rf build/* && tsc --declaration",
"semantic-release": "semantic-release",
"test": "jest --passWithNoTests",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@aws-cdk/assert": "1.96.0",
"@types/shelljs": "0.8.8",
"esbuild": "^0.11.5",
"find-up": "5.0.0",
"shelljs": "0.8.4",
"ts-node": "9.0.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"webpack": "^5.8.0",
"webpack-cli": "^4.2.0"
},
"devDependencies": {
"@aws-cdk/aws-apigatewayv2": "1.96.0",
"@aws-cdk/aws-apigatewayv2-integrations": "1.96.0",
"@aws-cdk/aws-dynamodb": "1.96.0",
"@aws-cdk/aws-lambda": "1.96.0",
"@aws-cdk/aws-lambda-event-sources": "1.96.0",
"@aws-cdk/aws-logs": "1.96.0",
"@aws-cdk/aws-logs-destinations": "1.96.0",
"@aws-cdk/core": "1.96.0",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@tsconfig/node10": "^1.0.7",
"@typescript-eslint/eslint-plugin": "4.5.0",
"@typescript-eslint/parser": "4.5.0",
"aws-sdk": "^2.782.0",
"eslint": "7.12.0",
"eslint-config-airbnb-typescript": "12.0.0",
"eslint-config-prettier": "6.14.0",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.1",
"lint-staged": "^10.5.0",
"prettier": "^2.1.2",
"semantic-release": "^17.2.2",
"sort-package-json": "^1.46.1",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"peerDependencies": {
"@aws-cdk/assert": "*",
"@aws-cdk/aws-apigatewayv2": "*",
"@aws-cdk/aws-apigatewayv2-integrations": "*",
"@aws-cdk/aws-dynamodb": "*",
"@aws-cdk/aws-lambda": "*",
"@aws-cdk/aws-lambda-event-sources": "*",
"@aws-cdk/aws-logs": "*",
"@aws-cdk/aws-logs-destinations": "*",
"@aws-cdk/core": "*",
"aws-sdk": "*"
}
}