This repository has been archived by the owner on Mar 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.57 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
{
"name": "minecraft-server-farm",
"version": "2.2.0",
"description": "Resources for running a Minecraft server farm in AWS",
"license": "MIT",
"keywords": [
"minecraft",
"aws"
],
"homepage": "https://github.com/cpolanec/minecraft-server-farm#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cpolanec/minecraft-server-farm.git"
},
"bugs": {
"url": "https://github.com/cpolanec/minecraft-server-farm/issues"
},
"scripts": {
"clean": "rm -rf cdk.out coverage **/*.d.ts bin/*.js lib/*.js test/*.js",
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint .",
"test": "jest --coverage",
"synth": "cdk synth",
"deploy": "cdk deploy --all --require-approval never",
"destroy": "cdk destroy --all --force"
},
"dependencies": {
"@types/aws-lambda": "8.10.88",
"aws-cdk-lib": "2.2.0",
"aws-sdk": "2.1047.0",
"constructs": "10.0.13",
"dotenv": "10.0.0",
"env-var": "7.1.1",
"got": "11.8.3",
"source-map-support": "0.5.21"
},
"devDependencies": {
"@aws-cdk/assert": "2.2.0",
"@tsconfig/node16": "1.0.2",
"@types/jest": "27.0.3",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "5.8.0",
"@typescript-eslint/parser": "5.8.0",
"aws-cdk": "2.2.0",
"esbuild": "0.14.6",
"eslint": "8.5.0",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.3",
"jest": "27.4.5",
"ts-jest": "27.1.2",
"ts-node": "10.4.0",
"typescript": "4.5.4"
}
}