hyperdx/package.json
github-actions[bot] 7c03397fe9
Version common-utils + Setup int test environment (#566)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to v2, this PR will be updated.


# Releases
## @hyperdx/common-utils@0.0.10

### Patch Changes

-   fc4548f: feat: add alert schema + types


Co-authored-by: Warren <5959690+wrn14897@users.noreply.github.com>
2025-01-22 23:30:13 +00:00

45 lines
1.3 KiB
JSON

{
"name": "hyperdx",
"private": true,
"version": "2-beta",
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@nx/workspace": "16.8.1",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.0",
"eslint-config-next": "13",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^2.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"nx": "16.8.1",
"prettier": "3.3.3"
},
"scripts": {
"prepare": "husky install",
"app:lint": "nx run @hyperdx/app:ci:lint",
"lint": "npx nx run-many -t ci:lint",
"version": "npx changeset version --ignore @hyperdx/api --ignore @hyperdx/app",
"release": "npx nx run-many --target=build --projects=@hyperdx/common-utils && npx changeset publish",
"dev": "docker compose -f docker-compose.dev.yml up"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write --ignore-unknown",
"eslint --fix --quiet"
],
"**/*.{mdx,json,yml}": [
"prettier --write --ignore-unknown"
]
},
"packageManager": "yarn@4.5.1"
}