forked from cjlawson02/ntcore-ts-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "ntcore-ts-client-monorepo",
"version": "0.0.0",
"license": "ISC",
"scripts": {
"prepare": "husky install",
"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.5.0",
"uuid": "^9.0.0",
"ws": "^8.12.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@nrwl/eslint-plugin-nx": "15.6.3",
"@nrwl/jest": "15.6.3",
"@nrwl/js": "15.6.3",
"@nrwl/linter": "15.6.3",
"@nrwl/node": "15.6.3",
"@nrwl/nx-cloud": "15.0.3",
"@nrwl/workspace": "15.6.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/uuid": "^9.0.0",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "~8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsdoc": "^40.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.3.1",
"jest-websocket-mock": "^2.4.0",
"lint-staged": "^13.1.0",
"nx": "15.6.3",
"prettier": "^2.6.2",
"ts-jest": "^29.0.5",
"ts-node": "10.9.1",
"typedoc": "^0.23.24",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.9.4"
}
}