-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "valheim-server",
"version": "1.0.0",
"description": "Valheim Server AWS SAM",
"main": "index.ts",
"scripts": {
"build": "webpack",
"build:watch": "webpack-cli -w",
"clean": "rimraf 'infrastructure/**/.aws-sam'",
"prebuild": "npm run clean",
"prebuild:watch": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JMiocevich/Valheim-Server-on-AWS-Part-1.git"
},
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/JMiocevich/Valheim-Server-on-AWS-Part-1/issues"
},
"homepage": "https://github.com/JMiocevich/Valheim-Server-on-AWS-Part-1#readme",
"devDependencies": {
"@types/aws-lambda": "^8.10.92",
"@types/gamedig": "^3.0.2",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"aws-sam-webpack-plugin": "^0.11.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@aws-sdk/client-ecs": "^3.54.1",
"@aws-sdk/client-secrets-manager": "^3.51.0",
"gamedig": "^4.0.2"
}
}