-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.93 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
{
"name": "hammerfightio",
"author": "Iván Cea Fontenla",
"license": "UNLICENSED",
"description": "Monorepo for the Hammerfight.io game",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"start": "npm run build-dev && npm run serve",
"serve": "tsx server/index.ts",
"build": "webpack --mode production",
"build-dev": "webpack --mode development",
"format": "prettier --write .",
"circular-dependencies": "madge --circular --extensions ts ./",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"check": "tsc --noEmit && npx webpack configtest && npm run lint && npm run circular-dependencies"
},
"dependencies": {
"@elastic/elasticsearch": "^8.14.0",
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"forwarded-parse": "^2.1.2",
"is-ip": "^5.0.1",
"is-mobile": "^5.0.0",
"lodash-es": "^4.17.21",
"nipplejs": "^0.10.2",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"ts-pattern": "^5.3.1",
"two.js": "^0.8.14",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.6.0",
"@types/compression": "^1.7.5",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/lodash-es": "^4.17.12",
"child_process": "^1.0.2",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"html-webpack-plugin": "^5.6.0",
"madge": "^8.0.0",
"mini-css-extract-plugin": "^2.9.0",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^4.0.0",
"sass": "^1.77.6",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0-alpha.39",
"val-loader": "^6.0.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
}
}