-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.68 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "tf2pickup",
"version": "12.0.0-alpha.0",
"author": "Michał Garapich <garrappachc@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsx --watch src/main.ts",
"check": "xss-scan",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test": "vitest --dir src",
"test:e2e": "playwright test",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json && tsc-alias",
"postbuild": "cpy public dist && cpy src/**/*.md src/**/*.css dist/src"
},
"dependencies": {
"@fastify/autoload": "6.0.3",
"@fastify/cookie": "11.0.2",
"@fastify/flash": "6.0.3",
"@fastify/formbody": "8.0.2",
"@fastify/request-context": "6.0.2",
"@fastify/secure-session": "8.1.1",
"@fastify/sensible": "6.0.2",
"@fastify/static": "8.0.4",
"@fastify/websocket": "11.0.2",
"@kitajs/fastify-html-plugin": "4.2.0",
"@kitajs/html": "4.2.7",
"@kitajs/ts-html-plugin": "4.1.1",
"@tailwindcss/typography": "0.5.16",
"@tf2pickup-org/serveme-tf-client": "0.1.2",
"async-mutex": "0.5.0",
"autoprefixer": "10.4.20",
"country-flag-icons": "1.5.14",
"croner": "9.0.0",
"cssnano": "7.0.6",
"date-fns": "4.1.0",
"dotenv": "16.4.7",
"fastify": "5.2.1",
"fastify-plugin": "5.0.1",
"fastify-type-provider-zod": "4.0.2",
"generate-password": "1.7.1",
"jsonwebtoken": "9.0.2",
"lodash-es": "4.17.21",
"marked": "15.0.6",
"mime": "4.0.6",
"mongodb": "6.12.0",
"nanoid": "5.0.9",
"openid": "2.0.12",
"pino": "9.6.0",
"postcss": "8.5.1",
"postcss-import": "16.1.0",
"postcss-lighten-darken": "0.9.0",
"rcon-client": "4.2.5",
"steamapi": "3.0.12",
"steamid": "2.1.0",
"tailwindcss": "3.4.17",
"umzug": "3.8.2",
"ws": "8.18.0",
"zod": "3.24.1"
},
"devDependencies": {
"@eslint/js": "9.18.0",
"@playwright/test": "1.49.1",
"@tsconfig/strictest": "2.0.5",
"@types/eslint__js": "8.42.3",
"@types/jsonwebtoken": "9.0.7",
"@types/lodash": "4.17.14",
"@types/lodash-es": "4.17.12",
"@types/node": "22.10.7",
"@types/openid": "2.0.5",
"@types/postcss-import": "14.0.3",
"@types/steamid": "2.0.3",
"@types/ws": "8.5.13",
"chart.js": "4.4.7",
"cpy-cli": "5.0.0",
"cssnano": "7.0.6",
"eslint": "9.18.0",
"globals": "15.14.0",
"howler": "2.2.4",
"htmx.org": "1.9.12",
"pino-princess": "1.0.0",
"postcss-cli": "11.0.0",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.10",
"rimraf": "6.0.1",
"tsc-alias": "1.8.10",
"tsx": "4.19.2",
"typescript": "5.7.3",
"typescript-eslint": "8.20.0",
"vitest": "2.1.8"
}
}