-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.95 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "socketdb",
"version": "6.1.0",
"description": "Real-time synchronized data storage",
"homepage": "https://socketdb.com",
"license": "MIT",
"scripts": {
"prepare": "is-ci || husky install",
"docs": "pnpm nx serve docs"
},
"engines": {
"node": "16.x"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"private": true,
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"*": [
"nx format:write --files"
]
},
"dependencies": {
"@docusaurus/core": "2.0.0-rc.1",
"@docusaurus/preset-classic": "2.0.0-rc.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mdx-js/react": "^1.6.22",
"@sapphire/docusaurus-plugin-npm2yarn2pnpm": "^1.1.4",
"ajv": "^8.12.0",
"clsx": "^1.2.1",
"krog": "^1.2.0",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tslib": "^2.4.1",
"ws": "^8.12.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@docusaurus/module-type-aliases": "2.0.0-beta.13",
"@docusaurus/types": "2.0.0-rc.1",
"@nrwl/cli": "15.5.3",
"@nrwl/devkit": "15.5.3",
"@nrwl/eslint-plugin-nx": "15.5.3",
"@nrwl/jest": "15.5.3",
"@nrwl/js": "15.5.3",
"@nrwl/linter": "15.5.3",
"@nrwl/rollup": "15.5.3",
"@nrwl/workspace": "15.5.3",
"@nx-plus/docusaurus": "15.0.0-rc.0",
"@types/jest": "28.1.1",
"@types/node": "18.7.1",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"chalk": "^5.2.0",
"cz-git": "^1.4.1",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"lint-staged": "^13.1.0",
"nx": "15.5.3",
"prettier": "^2.8.3",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "~4.8.4"
},
"pnpm": {
"overrides": {
"trim@<0.0.3": ">=0.0.3",
"got@<11.8.5": ">=11.8.5"
}
}
}