-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.97 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.97 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
{
"name": "shardy-template",
"version": "1.1.1",
"description": "Template service for Shardy",
"license": "MIT",
"author": "Mopsicus <mail@mopsicus.ru>",
"homepage": "https://github.com/mopsicus/shardy-template",
"scripts": {
"build-ts": "tsc",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"build": "npm run build-ts && npm run lint",
"debug": "npm run build && npm run watch-debug",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix && npm run format",
"serve-debug": "nodemon --inspect dist/app.js",
"serve": "node dist/app.js",
"start": "npm run serve",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"watch-node": "nodemon dist/app.js",
"watch-ts": "tsc -w",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\""
},
"keywords": [
"shardy",
"microservice",
"framework",
"rpc",
"web",
"template",
"netcode",
"networking",
"games",
"engine",
"multiplayer",
"websocket",
"realtime",
"server",
"socket",
"typescript",
"nodejs"
],
"bugs": {
"url": "https://github.com/mopsicus/shardy-template/issues"
},
"dependencies": {
"dotenv": "^16.4.5",
"ip": "^2.0.1",
"shardy": "^1.2.0",
"winston": "^3.14.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@types/eslint": "^9.6.1",
"@types/ip": "^1.1.3",
"@types/node": "^22.7.3",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"concurrently": "^9.0.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"nodemon": "^3.1.7",
"typescript": "^5.6.2"
}
}