-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "ntcore-ts-client-monorepo",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"prepare": "husky",
"test": "npx nx run ntcore-ts-client:test"
},
"private": true,
"lint-staged": {
"*": [
"npx nx format:write --uncommitted",
"npx nx affected --target=lint-fix --uncommitted",
"npx nx affected --target=test --uncommitted",
"npx nx affected --target=build --uncommitted",
"npx nx run ntcore-ts-client:docs"
]
},
"dependencies": {
"@msgpack/msgpack": "^2.8.0",
"isomorphic-ws": "^5.0.0",
"tslib": "^2.8.1",
"uuid": "^11.0.5",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@nx/devkit": "20.3.1",
"@nx/eslint": "20.3.1",
"@nx/eslint-plugin": "20.3.1",
"@nx/jest": "20.3.1",
"@nx/js": "20.3.1",
"@nx/node": "20.3.1",
"@nx/workspace": "20.3.1",
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@typescript-eslint/utils": "^8.13.0",
"eslint": "8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-websocket-mock": "^2.5.0",
"lint-staged": "^15.3.0",
"nx": "20.3.1",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.27.6",
"typedoc-plugin-missing-exports": "^3.1.0",
"typescript": "5.7.3"
}
}