-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.45 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "hyperdx-js",
"version": "1.0.0",
"license": "MIT",
"private": true,
"author": {
"name": "HyperDX"
},
"workspaces": [
"packages/*"
],
"scripts": {
"ci:build": "npx nx run-many --target=build",
"ci:unit": "npx nx run-many --target=ci:unit",
"ci:lint": "npx nx run-many --target=ci:lint",
"version": "changeset version && npx nx run-many --target=postversion",
"release": "npx nx run-many --target=build && yarn changeset publish && git push --follow-tags",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write --ignore-unknown",
"eslint --fix"
],
"**/*.{json,yml}": [
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/debug": "^4.1.8",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"nx": "19.6.2",
"prettier": "^3.3.3",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.3",
"tsutils": "^3.21.0",
"typescript": "^5.1.3"
}
}