-
Notifications
You must be signed in to change notification settings - Fork 220
/
package.json
42 lines (42 loc) · 1.08 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
38
39
40
41
42
{
"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",
"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",
"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"
}