-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.25 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.25 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
{
"name": "hyveon",
"private": true,
"workspaces": [
"app",
"app/packages/*",
"app/packages/desktop-preload",
"app/packages/lambda/*",
"scripts"
],
"engines": {
"node": ">=22.12.0"
},
"devDependencies": {
"electron-vite": "^5.0.0"
},
"scripts": {
"app:dev": "npm run dev -w game-server-manager",
"app:build": "npm run build -w game-server-manager",
"app:start": "npm run start -w game-server-manager",
"app:build:lambdas": "npm run build:lambdas -w game-server-manager",
"app:test": "npm run test -w game-server-manager",
"app:test:coverage": "npm run test:coverage -w game-server-manager",
"app:test:watch": "npm run test:watch -w game-server-manager",
"app:lint": "npm run lint -w game-server-manager",
"app:lint:fix": "npm run lint:fix -w game-server-manager",
"app:test:e2e": "npm run test:e2e -w @hyveon/web",
"app:test:integration": "node app/scripts/embed-tfstate.mjs && npm run build -w @hyveon/desktop-main && npm run test:integration -w @hyveon/web",
"scripts:init-parent": "npm run init-parent -w @hyveon/scripts",
"desktop:dev": "electron-vite dev",
"desktop:build": "electron-vite build"
}
}