-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.5 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
{
"type": "module",
"packageManager": "[email protected]",
"engines": {
"bun": ">=1.1.0",
"node": ">=22.0.0"
},
"scripts": {
"// When making changes in scripts check out if .lefthook.yml should be synched (`bun lefthook install`)": "",
"pm:update": "bunx npm-check-updates -i && bun update",
"check": "bun --bun tsc --p HallOfFame/UI --noEmit && biome check --fix",
"// Cannot 'bun --bun' webpack yet: https://github.com/oven-sh/bun/issues/10768": "",
"// When we can bunify (or replace) webpack, use 'bun --bun --smol' to consume less memory, it's useful with CS2 in the background...": "",
"build": "webpack --config HallOfFame/UI/webpack.config.js --progress",
"dev": "webpack --config HallOfFame/UI/webpack.config.js --progress --watch"
},
"dependencies": {
"@csmodding/urbandevkit": "^0.1.2",
"classnames": "^2.5.1",
"common-tags": "^1.8.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "~1.9.4",
"@types/common-tags": "^1.8.4",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"css-loader": "^7.1.2",
"lefthook": "^1.10.0",
"mini-css-extract-plugin": "^2.9.2",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"terser-webpack-plugin": "^5.3.11",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"trustedDependencies": ["@biomejs/biome", "lefthook"],
"optionalDependencies": {
"sass-embedded": "^1.83.0"
}
}