-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 3.02 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "game-guild",
"version": "1.0.0",
"description": "",
"author": "",
"license": "ISC",
"private": true,
"workspaces": [
"packages/*",
"services/web",
"services/api",
"tests"
],
"scripts": {
"install:api": "npm install --workspace=services/api",
"install:web": "npm install --workspace=services/web",
"install:apiclient": "npm install @game-guild/apiclient --no-save --workspace=services/web",
"clean": "rimraf --glob ./**/node_modules",
"prepare_": "husky install",
"format": "npm run format --workspaces --if-present",
"format:api": "npm run format --workspace=services/api",
"format:web": "npm run format --workspace=services/web",
"lint": "npm run lint --fix --workspaces --if-present",
"lint:api": "npm run lint --workspace=services/api",
"lint:web": "npm run lint --workspace=services/web",
"build": "npm run build --workspaces --if-present",
"build:api": "npm run build --workspace=services/api",
"build:web": "npm run build --workspace=services/web",
"dev": "concurrently \"npm run dev:api\" \"npm run dev:web\"",
"dev:api": "npm run dev --workspace=services/api",
"dev:web": "npm run dev --workspace=services/web",
"test": "npm run test --workspaces --if-present",
"test:api": "npm run test --workspace=services/api",
"test:web": "npm run test --workspace=services/web",
"start": "npm run start --workspaces --if-present",
"start:api": "npm run start:prod --workspace=services/api",
"start:web": "npm run start --workspace=services/web",
"start:both": "concurrently \"npm:dev:api\" \"npm:dev:web\"",
"open:tests": "npm run cy:open --workspace=tests",
"gource": "./contributors/gource.sh",
"db:diagram": "npm run db:diagram --workspace=services/api"
},
"devDependencies": {
"@game-guild/apiclient": "*",
"@game-guild/eslint-config": "*",
"@game-guild/jest-config": "*",
"@game-guild/prettier-config": "*",
"@game-guild/typescript-config": "*",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"moxygen": "^0.8.0",
"rimraf": "^5.0.10"
},
"dependencies": {
"axios": "^1.6.1",
"bufferutil": "^4.0.8",
"concurrently": "^8.2.2",
"npm-run-all": "^4.1.5",
"recharts": "^2.12.7",
"utf-8-validate": "^5.0.10"
},
"release": {
"branches": [
"master",
"main"
],
"repositoryUrl": "https://github.com/gameguild-gg/website",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
],
"@semantic-release/github"
]
}
}