72 строки
2.7 KiB
JSON
72 строки
2.7 KiB
JSON
{
|
|
"packageManager": "yarn@3.2.0",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"name": "root",
|
|
"private": true,
|
|
"engines": {
|
|
"node": "^18.16.1"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn workspaces foreach -ptv run build",
|
|
"build:public": "yarn workspaces foreach -ptv --no-private run build",
|
|
"build:tailwind-deps": "yarn workspaces foreach -iv -j unlimited --include '{@speckle/shared,@speckle/tailwind-theme,@speckle/ui-components}' run build",
|
|
"ensure:tailwind-deps": "node ./utils/ensure-tailwind-deps.mjs",
|
|
"lint": "eslint . --ext .js,.ts,.vue --max-warnings=0",
|
|
"helm:readme:generate": "./utils/helm/update-documentation.sh",
|
|
"prettier:check": "prettier --check .",
|
|
"prettier:fix": "prettier --write .",
|
|
"prettier:fix:file": "prettier --write",
|
|
"circleci:check": "circleci config validate ./.circleci/config.yml",
|
|
"dev:docker": "docker-compose -f ./docker-compose-deps.yml",
|
|
"dev:docker:up": "docker-compose -f ./docker-compose-deps.yml up -d",
|
|
"dev:docker:down": "docker-compose -f ./docker-compose-deps.yml down",
|
|
"dev": "yarn workspaces foreach -piv -j unlimited run dev",
|
|
"dev:no-server": "yarn workspaces foreach --exclude @speckle/server -piv -j unlimited run dev",
|
|
"dev:minimal": "yarn workspaces foreach -piv -j unlimited --include '{@speckle/server,@speckle/frontend,@speckle/shared}' run dev",
|
|
"gqlgen": "yarn workspaces foreach -piv -j unlimited --include '{@speckle/server,@speckle/frontend,@speckle/frontend-2}' run gqlgen",
|
|
"dev:server": "yarn workspace @speckle/server dev",
|
|
"dev:frontend": "yarn workspace @speckle/frontend dev",
|
|
"dev:frontend-2": "yarn workspace @speckle/frontend-2 dev",
|
|
"dev:shared": "yarn workspace @speckle/shared dev",
|
|
"prepare": "husky install",
|
|
"postinstall": "husky install",
|
|
"cm": "cz"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-typescript": "^11.1.0",
|
|
"@swc/core": "^1.2.222",
|
|
"@types/eslint": "^8.4.1",
|
|
"@types/lockfile": "^1.0.2",
|
|
"commitizen": "^4.2.5",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"eslint": "^8.11.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"husky": "^7.0.4",
|
|
"lint-staged": "^12.3.7",
|
|
"lockfile": "^1.0.4",
|
|
"pino-pretty": "^9.1.1",
|
|
"prettier": "^2.5.1",
|
|
"ts-node": "^10.9.1",
|
|
"tsconfig-paths": "^4.0.0"
|
|
},
|
|
"resolutions": {
|
|
"tslib": "^2.3.1",
|
|
"core-js": "3.22.4",
|
|
"graphql": "^15.3.0",
|
|
"typescript": "^5.0.4",
|
|
"prettier": "^2.8.7",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.0",
|
|
"@typescript-eslint/parser": "^5.59.0",
|
|
"eslint": "^8.11.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"@types/react": "file:./packages/frontend-2/type-augmentations/stubs/types__react"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|