This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
137 lines (137 loc) · 3.9 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "realtime-fraud-detection-with-gnn-on-dgl",
"description": "Real-time Fraud Detection with Graph Neural Network on DGL",
"scripts": {
"build": "npx projen build",
"bundle": "npx projen bundle",
"cdk-init": "npx projen cdk-init",
"clobber": "npx projen clobber",
"compile": "npx projen compile",
"default": "npx projen default",
"deploy": "npx projen deploy",
"deploy-to-default-vpc": "npx projen deploy-to-default-vpc",
"destroy": "npx projen destroy",
"diff": "npx projen diff",
"eject": "npx projen eject",
"eslint": "npx projen eslint",
"package": "npx projen package",
"post-compile": "npx projen post-compile",
"post-upgrade": "npx projen post-upgrade",
"postinstall": "npx projen postinstall",
"pre-compile": "npx projen pre-compile",
"synth": "npx projen synth",
"synth:silent": "npx projen synth:silent",
"test": "npx projen test",
"test:watch": "npx projen test:watch",
"upgrade": "npx projen upgrade",
"watch": "npx projen watch",
"projen": "npx projen"
},
"devDependencies": {
"@aws-cdk/cloud-assembly-schema": "^2",
"@aws-cdk/cx-api": "^2",
"@types/bson": "^4.2.0",
"@types/jest": "^26.0.24",
"@types/mongodb": "^3.6.20",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"aws-cdk": "^2.0.0",
"constructs": "^10.0.5",
"esbuild": "^0.17.9",
"eslint": "^8",
"eslint-import-resolver-node": "^0.3.7",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.27.5",
"jest": "^27",
"jest-junit": "^13",
"npm-check-updates": "^16",
"projen": "^0.67.60",
"ts-jest": "^27",
"ts-node": "^9",
"typescript": "~4.6.0"
},
"dependencies": {
"@aws-cdk/aws-apigatewayv2-alpha": "^2.51.1-alpha.0",
"@aws-cdk/aws-apigatewayv2-integrations-alpha": "^2.51.1-alpha.0",
"@aws-cdk/aws-appsync-alpha": "^2.51.1-alpha.0",
"@aws-cdk/aws-glue-alpha": "^2.51.1-alpha.0",
"@aws-cdk/aws-lambda-python-alpha": "^2.51.1-alpha.0",
"@aws-cdk/aws-neptune-alpha": "^2.51.1-alpha.0",
"@aws-sdk/client-cloudformation": "^3.30.0",
"@aws-sdk/client-glue": "^3.30.0",
"@aws-sdk/client-lambda": "^3.30.0",
"@aws-sdk/client-secrets-manager": "^3.30.0",
"@aws-sdk/client-serverlessapplicationrepository": "^3.30.0",
"@aws-sdk/client-sts": "^3.30.0",
"@types/aws-lambda": "^8.10.83",
"aws-cdk-lib": "^2.0.0",
"cdk-bootstrapless-synthesizer": "^2.1.1",
"cfn-custom-resource": "^5.0.14",
"constructs": "^10.0.5",
"mongodb": "^3.7.0",
"mongodb-client-encryption": "^1.2.6",
"object-hash": "^2.2.0",
"sync-fetch": "^0.3.0"
},
"keywords": [
"AWS-CDK",
"DGL",
"Fraud Detection",
"GNN",
"GraphDB",
"Neptune"
],
"engines": {
"node": ">= 16.18.0"
},
"license": "UNLICENSED",
"version": "2.0.4-mainline",
"jest": {
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
"<rootDir>/(test|src)/**/*(*.)@(spec|test).ts?(x)"
],
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"clover",
"cobertura",
"text"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"/node_modules/"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-reports"
}
]
],
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.dev.json"
}
}
},
"resolutions": {
"trim-newlines": "^3.0.1",
"pac-resolver": "^5.0.0",
"set-value": "^4.0.1",
"ansi-regex": "^5.0.1"
},
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}