-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 911 Bytes
/
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
{
"name": "GameLift-Streaming-cdk",
"description": "An easy-to-deploy web application example for GameLift Streaming that enables browser-based game streaming with URL sharing capabilities",
"version": "0.1.0",
"bin": {
"cdk": "bin/GLSInfrasstructureStack.js"
},
"scripts": {
"start": "node local-server.js",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "22.5.4",
"aws-cdk": "2.158.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"aws-cdk-lib": "2.158.0",
"aws-sdk": "^2.1691.0",
"constructs": "^10.0.0",
"cors": "^2.8.5",
"express": "^4.21.0",
"node-fetch": "^3.3.2",
"open": "^10.1.0",
"serverless-http": "^3.2.0",
"source-map-support": "^0.5.21"
}
}