forked from lmk123/migpt-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.82 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
{
"name": "@mgc/root",
"version": "0.0.0",
"scripts": {
"test": "jest && nx run-many --target=test --exclude @mgc/root",
"clean-all": "npx nx run-many --target=clean",
"build-all": "npx nx run-many --target=build",
"u": "npx -y npm-check-updates -ws --root -u -x eslint,open",
"pub-options": "npx nx run @migptgui/options:build --verbose && npm publish --access public -w packages/options",
"pub-options-preview": "npx nx run @migptgui/options-with-preview:build --verbose && npm publish --access public -w packages/options-with-preview",
"pub-gui": "npx nx run @migptgui/gui:build --verbose && npm publish --access public -w packages/gui",
"pub-controller": "npx nx run @migptgui/controller:build --verbose && npm publish --access public -w packages/controller",
"pub-server-api": "npx nx run @migptgui/server:build --verbose && npm publish --access public -w packages/server",
"pub-server": "npx nx run migpt-server:build --verbose && npm publish --access public -w apps/server",
"build:docker-server": "docker build -t lmk123/migpt-server --platform=linux/arm64,linux/amd64 ./docker",
"build:docker-server-version": "docker tag lmk123/migpt-server lmk123/migpt-server:$(node -p \"require('./apps/server/package.json').version\")",
"pub-cli": "npx nx run migpt-cli:build --verbose && npm publish --access public -w apps/cli"
},
"private": true,
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@nrwl/cli": "^15.9.3",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nx": "^19.8.2",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8"
},
"workspaces": [
"packages/*",
"apps/*"
]
}