-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
{
"name": "u-wave-hub",
"type": "module",
"dependencies": {
"@u-wave/hub-server": "file:server",
"u-wave-announce": "file:plugin",
"u-wave-hub-client": "file:client"
},
"engines": {
"node": ">= 24",
"npm": ">= 10"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/eslint-plugin": "^7.27.0",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"cross-env": "^10.0.0",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"globals": "^17.4.0",
"typescript-eslint": "^8.58.0",
"u-wave-core": "github:u-wave/core",
"vitest": "^4.0.7"
},
"private": true,
"scripts": {
"build": "npm run -w client build",
"prepare": "npm run build",
"start:client": "cross-env HUB_SERVER=https://announce.u-wave.net npm run -w client dev",
"start": "cross-env HUB_SERVER=http://localhost:6451 npm run -w client dev & cross-env PORT=6451 npm run -w server start",
"lint": "eslint .",
"tests-only": "vitest run",
"test": "npm run tests-only && npm run lint"
},
"workspaces": [
"client",
"plugin",
"server"
]
}