-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.93 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.93 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
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
{
"name": "tf2-quickserver",
"version": "0.0.1",
"description": "TF2 Quick Server Manager",
"main": "./src/index.ts",
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"start": "tsx --env-file .env ./src/index.ts",
"test": "vitest",
"dev": "nodemon",
"terraform:deploy": "terraform -chdir=./terraform init && terraform -chdir=./terraform apply -auto-approve && terraform -chdir=./terraform output -json > ./config/local.json",
"terraform:plan": "terraform -chdir=./terraform init && terraform -chdir=./terraform plan",
"gen:openapi": "tsx ./packages/scripts/generateOpenApiSpec.ts",
"download:maps": "tsx ./packages/scripts/downloadMaps.ts",
"sync:fastdl": "tsx ./packages/scripts/syncFastDL.ts",
"migration:run": "knex --knexfile knexfile.ts migrate:latest",
"migration:create": "knex --knexfile knexfile.ts migrate:make",
"build:fat:standard-competitive-amd64": "docker build -t sonikro/fat-tf2-standard-competitive-amd64:latest -f ./variants/fat-standard-competitive-amd64/Dockerfile .",
"push:fat:standard-competitive-amd64": "docker push sonikro/fat-tf2-standard-competitive-amd64:latest",
"build:fat:standard-competitive-i386": "docker build -t sonikro/fat-tf2-standard-competitive-i386:latest -f ./variants/fat-standard-competitive-i386/Dockerfile .",
"push:fat:standard-competitive-i386": "docker push sonikro/fat-tf2-standard-competitive-i386:latest",
"build:fat:tf2pickup": "docker build -t sonikro/fat-tf2-pickup:latest -f ./variants/fat-tf2pickup/Dockerfile .",
"build:fat:mge-tf": "docker build -t sonikro/fat-mge-tf:latest -f ./variants/fat-mge-tf/Dockerfile .",
"build:fat:tf2center": "docker build -t sonikro/fat-tf2center:latest -f ./variants/fat-tf2center/Dockerfile .",
"push:fat:mge-tf": "docker push sonikro/fat-mge-tf:latest",
"build": "tsgo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sonikro/TF2-QuickServer.git"
},
"keywords": [
"tf2",
"server",
"bot",
"discord",
"manager",
"oracle",
"oci"
],
"author": "sonikro",
"license": "MIT",
"bugs": {
"url": "https://github.com/sonikro/TF2-QuickServer/issues"
},
"homepage": "https://github.com/sonikro/TF2-QuickServer#readme",
"devDependencies": {
"@types/chance": "^1.1.6",
"@types/config": "^3.3.5",
"@types/express": "^5.0.1",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.10",
"@types/node-schedule": "^2.1.7",
"@types/supertest": "^6.0.3",
"@types/websocket": "^1.0.10",
"@typescript/native-preview": "^7.0.0-dev.20251210.1",
"@vitest/coverage-v8": "^3.0.9",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-vitest": "^6.2.0",
"knex": "^3.1.0",
"msw": "^2.7.3",
"nodemon": "^3.1.9",
"supertest": "^7.1.0",
"tsx": "^4.19.3",
"typescript": "^5.9.3",
"vitest": "^3.0.9",
"vitest-mock-extended": "^3.0.1",
"vitest-when": "^0.6.0"
}
}