forked from datafusion-contrib/datafusion-distributed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.23 KB
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
{
"name": "cdk",
"version": "0.1.0",
"bin": {
"cdk": "bin/cdk.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"bootstrap": "cdk bootstrap",
"deploy": "cdk deploy --outputs-file .cdk-outputs.json",
"sync-bucket": "TS_NODE_PREFER_TS_EXTS=1 npx ts-node bin/sync-bucket.ts",
"compare": "TS_NODE_PREFER_TS_EXTS=1 npx ts-node bin/compare.ts",
"datafusion-bench": "TS_NODE_PREFER_TS_EXTS=1 npx ts-node bin/datafusion-bench.ts",
"trino-bench": "TS_NODE_PREFER_TS_EXTS=1 npx ts-node bin/trino-bench.ts",
"spark-bench": "TS_NODE_PREFER_TS_EXTS=1 npx ts-node bin/spark-bench.ts",
"ballista-bench": "TS_NODE_PREFER_TS_EXTS=1 npx ts-node bin/ballista-bench.ts",
"fast-deploy": "TS_NODE_PREFER_TS_EXTS=1 npx ts-node bin/fast-deploy.ts",
"send-command": "TS_NODE_PREFER_TS_EXTS=1 npx ts-node bin/send-command.ts"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "22.7.9",
"aws-cdk": "2.1031.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.3"
},
"dependencies": {
"aws-cdk-lib": "2.215.0",
"constructs": "^10.0.0",
"commander": "^14.0.2",
"zod": "^4.1.12"
}
}