-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.91 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
{
"name": "ellmud",
"version": "0.2.0-dev.64",
"private": true,
"description": "PvPvE Extraction RPG — Real-Time MUD",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently --kill-others \"npm:dev:server\" \"npm:dev:client\"",
"dev:server": "npm run dev -w @ellmud/server",
"dev:client": "npm run dev -w @ellmud/client",
"build": "npm run build -w @ellmud/shared && npm run build -w @ellmud/server && npm run build -w @ellmud/client",
"test": "npm run test --workspaces --if-present",
"test:ci": "npm run test -w @ellmud/shared -w @ellmud/server -w @ellmud/client",
"test:e2e": "npm run test -w @ellmud/e2e",
"load-test": "npm run load-test -w @ellmud/e2e --",
"load-test:ws": "npm run load-test:ws -w @ellmud/e2e --",
"lint": "npm run lint --workspaces --if-present",
"version:bump": "npm version --no-git-tag-version",
"version:sync": "node scripts/sync-versions.mjs",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"concurrently": "^9.2.1",
"eslint": "^10.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"semantic-release": "^25.0.3",
"typescript-eslint": "^8.57.1"
},
"dependencies": {
"@xyflow/react": "^12.10.2",
"elkjs": "^0.11.1"
},
"overrides": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"qs": "6.15.2",
"express": "4.22.2",
"vite": "6.4.3",
"tsx": "4.22.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
}
}