-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "u-wave-hub",
"dependencies": {
"@u-wave/hub-server": "file:server",
"u-wave-announce": "file:plugin",
"u-wave-hub-client": "file:client"
},
"engines": {
"node": ">= 14",
"npm": ">= 7"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/eslint-plugin": "^7.25.9",
"cross-env": "^7.0.2",
"eslint": "^9.16.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.13.0",
"typescript-eslint": "^8.19.0"
},
"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": "npm run -w plugin -w server test",
"test": "npm run tests-only && npm run lint"
},
"workspaces": [
"client",
"plugin",
"server"
]
}