-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.98 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.98 KB
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
{
"name": "docsgen",
"version": "0.0.0",
"license": "Apache-2.0",
"private": true,
"scripts": {
"postinstall": "husky install",
"build": "nx run-many --target=build --all --parallel=2 --skip-nx-cache --exclude=documentation",
"build:watch": "nx run-many --target=start --all --parallel=20",
"build:docs": "cd documentation && pnpm install && pnpm build",
"test": "nx run-many --target=test --all --parallel=1 --skip-nx-cache",
"lint": "nx run-many --target=lint --all --parallel=3 --skip-nx-cache",
"typecheck": "nx run-many --target=typecheck --all --parallel=2 --skip-nx-cache",
"format": "oxfmt .",
"release": "nx run-many --target=release --all --parallel=1 --skip-nx-cache"
},
"dependencies": {
"@nx/js": "22.7.1",
"@nx/workspace": "22.7.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "15.0.6",
"@testing-library/user-event": "^14.5.1",
"@types/node": "18.19.26",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@typescript/native-preview": "^7.0.0-dev",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/coverage-v8": "^3.0.0",
"commitlint": "^18.4.3",
"concurrently": "^8.2.2",
"husky": "^8.0.3",
"jsdom": "^25.0.0",
"msw": "^2.0.11",
"nx": "22.7.1",
"oxfmt": "^0.7.0",
"oxlint": "^0.16.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "^6.0.0",
"semantic-release": "^22.0.12",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^8.0.10",
"vite-plugin-dts": "^5.0.0",
"vitest": "^4.1.5"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/BetterTyped/docsgen.git"
},
"bugs": {
"url": "https://github.com/BetterTyped/docsgen/issues"
},
"keywords": [
"docgen",
"documentation",
"docusaurus"
]
}