-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.4 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.4 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
64
65
66
{
"name": "game-guild",
"version": "3.2.2",
"description": "",
"author": "GameGuild <contact@gameguild.gg>",
"homepage": "https://gameguild.gg",
"license": "UNLICENSED",
"private": true,
"workspaces": [
"apps/*",
"demos/*",
"packages/*",
"packages/config/*",
"tools/*",
"tools/emception/packages/*"
],
"scripts": {
"dev": "npm-run-all --parallel dev:api dev:web",
"dev:api": "dotnet watch --project apps/api/Source/GameGuild.API/GameGuild.API.csproj",
"dev:web": "npm run dev --workspace=apps/web",
"build": "npm run build --workspaces --if-present",
"build:api": "npm run build --workspace=apps/api",
"build:web": "npm run build --workspace=apps/website",
"test": "npm run test --workspaces --if-present",
"test:api": "npm run test --workspace=apps/api",
"test:web": "npm run test --workspace=apps/website",
"test:academy": "npm run test --workspace=apps/academy",
"test:console": "npm run test --workspace=apps/console",
"test:all": "npx jest",
"test:watch": "npx jest --watch",
"test:coverage": "npx jest --coverage",
"test:e2e": "npm run test:e2e --workspaces --if-present",
"test:perf": "npm run test:perf --workspaces --if-present",
"test:ci": "npx jest --coverage --ci --watchAll=false --passWithNoTests",
"check:types": "npm run check:types --workspaces",
"lint": "npm run lint --workspaces --if-present",
"lint:api": "npm run lint --workspace=apps/api",
"lint:web": "npm run lint --workspace=apps/website",
"format": "npm run format --workspaces --if-present",
"format:api": "npm run format --workspace=apps/api",
"format:web": "npm run format --workspace=apps/website",
"sync:format": "syncpack format",
"sync:list": "syncpack list",
"sync:lint": "syncpack lint",
"sync:fix": "syncpack fix-mismatches",
"clean": "rimraf --glob ./**/node_modules ./**/dist ./**/coverage ./**/build ./**/.next package-lock.json"
},
"packageManager": "npm@10.0.0",
"engines": {
"node": ">=18.0.0",
"npm": ">=10.0.0"
},
"devDependencies": {
"@game-guild/eslint-config": "*",
"@game-guild/prettier-config": "*",
"@game-guild/tailwind-config": "*",
"@game-guild/typescript-config": "*",
"@types/node": "^20.0.0",
"eslint": "^9.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.0",
"rimraf": "^6.0.0",
"syncpack": "^12.0.0",
"typescript": "^5.5.0"
}
}