forked from jeremylvln/Shulker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.26 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
{
"name": "@shulkermc/monorepo",
"version": "1.5.1",
"license": "AGPL-3.0-or-later",
"private": true,
"engines": {
"node": "^20"
},
"repository": {
"url": "git@github.com:bridgesplash/Shulker.git"
},
"scripts": {
"prepare": "husky install && npm run proto:build",
"build": "nx run-many --target=build --all",
"build:java": "nx run-many --targets=build -p shulker-server-api shulker-proxy-api shulker-server-agent shulker-proxy-agent",
"test": "nx run-many --target=test --all",
"format": "prettier --ignore-unknown --write '**/*'",
"lint": "nx run-many --target=lint --all",
"proto:build": "nx run-many --target=buf --all"
},
"devDependencies": {
"@bufbuild/buf": "1.28.1",
"@commitlint/cli": "18.5.0",
"@commitlint/config-conventional": "18.5.0",
"@nx/devkit": "17.2.8",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"nx": "17.2.8",
"prettier": "3.2.4",
"semantic-release": "23.0.0",
"semantic-release-replace-plugin": "1.2.7",
"yaml": "2.3.4"
},
"workspaces": [
"packages/*",
"docs"
],
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}