2023-09-13 03:08:05 +00:00
{
2023-09-26 04:45:10 +00:00
"name" : "hyperdx" ,
2023-09-13 03:08:05 +00:00
"private" : true ,
2024-11-22 05:44:33 +00:00
"version" : "2-beta" ,
2023-09-13 03:08:05 +00:00
"license" : "MIT" ,
"workspaces" : [
"packages/*"
] ,
"devDependencies" : {
2023-09-16 00:10:55 +00:00
"@changesets/cli" : "^2.26.2" ,
2023-09-13 03:08:05 +00:00
"@nx/workspace" : "16.8.1" ,
2024-11-12 12:53:15 +00:00
"@typescript-eslint/eslint-plugin" : "^8.7.0" ,
"@typescript-eslint/parser" : "^8.7.0" ,
2025-01-23 17:31:25 +00:00
"concurrently" : "^9.1.2" ,
2025-01-22 23:30:13 +00:00
"dotenv" : "^16.4.7" ,
2025-01-23 17:31:25 +00:00
"dotenv-cli" : "^8.0.0" ,
"dotenv-expand" : "^12.0.1" ,
2024-11-12 12:53:15 +00:00
"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" ,
2023-09-13 03:08:05 +00:00
"husky" : "^8.0.3" ,
"lint-staged" : "^13.1.2" ,
"nx" : "16.8.1" ,
2024-11-12 12:53:15 +00:00
"prettier" : "3.3.3"
2023-09-13 03:08:05 +00:00
} ,
"scripts" : {
2024-11-12 12:53:15 +00:00
"prepare" : "husky install" ,
2025-01-26 07:05:09 +00:00
"app:dev" : "npx concurrently -k -n 'API,APP,ALERTS-TASK,COMMON-UTILS' -c 'green.bold,blue.bold,yellow.bold,magenta' 'nx run @hyperdx/api:dev' 'nx run @hyperdx/app:dev' 'nx run @hyperdx/api:dev-task check-alerts' 'nx run @hyperdx/common-utils:dev'" ,
2024-11-12 12:53:15 +00:00
"app:lint" : "nx run @hyperdx/app:ci:lint" ,
2025-02-17 19:31:10 +00:00
"dev" : "docker compose -f docker-compose.dev.yml up -d && yarn app:dev && docker compose -f docker-compose.dev.yml down" ,
2024-11-12 12:53:15 +00:00
"lint" : "npx nx run-many -t ci:lint" ,
2025-02-11 18:27:45 +00:00
"version" : "make version" ,
2025-05-07 05:34:27 +00:00
"release" : "npx nx run-many --target=build --projects=@hyperdx/common-utils && npx changeset tag && npx changeset publish"
2023-09-13 03:08:05 +00:00
} ,
"lint-staged" : {
2024-03-29 06:51:49 +00:00
"**/*.{ts,tsx}" : [
2024-03-22 08:03:20 +00:00
"prettier --write --ignore-unknown" ,
2024-11-26 23:21:42 +00:00
"eslint --fix --quiet"
2024-03-22 08:03:20 +00:00
] ,
"**/*.{mdx,json,yml}" : [
"prettier --write --ignore-unknown"
]
2024-11-12 12:53:15 +00:00
} ,
"packageManager" : "yarn@4.5.1"
2023-09-13 03:08:05 +00:00
}