-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.38 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.38 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
{
"name": "game-server-manager",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"predev": "node scripts/embed-tfstate.mjs",
"dev": "concurrently -n server,client -c cyan,magenta \"npm run dev -w @hyveon/desktop-main\" \"npm run dev -w @hyveon/web\"",
"prebuild": "node scripts/embed-tfstate.mjs",
"build": "npm run build -w @hyveon/shared && npm run build -w @hyveon/desktop-main && npm run build -w @hyveon/web",
"build:lambdas": "npm run build -w @hyveon/shared && npm run build -w @hyveon/lambda-interactions -w @hyveon/lambda-followup -w @hyveon/lambda-update-dns -w @hyveon/lambda-watchdog -w @hyveon/lambda-efs-seeder",
"start": "node packages/desktop-main/dist/main.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/node": "^20.14.0",
"@vitest/coverage-v8": "^2.1.9",
"aws-sdk-client-mock": "^4.0.1",
"concurrently": "^8.2.2",
"esbuild": "^0.23.0",
"eslint": "^9.13.0",
"eslint-plugin-jsdoc": "^50.4.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-tsdoc": "^0.3.0",
"globals": "^15.11.0",
"typescript": "^5.5.2",
"typescript-eslint": "^8.11.0",
"vitest": "^2.1.9"
}
}