forked from nx-dotnet/nx-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.98 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "nx-dotnet",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"lint-staged": "lint-staged",
"publish-dev": "ts-node tools/scripts/publish-dev",
"e2e": "ts-node -P ./tools/scripts/tsconfig.e2e.json ./tools/scripts/e2e.ts",
"publish-local": "cp .npmrc.local .npmrc && run-p \"rimraf tmp\" e2e-registry \"ts-node ./tools/scripts/publish-all 99.99.99 local\"",
"semantic-release": "semantic-release",
"ts-node": "ts-node",
"rimraf": "rimraf",
"preinstall": "node ./tools/scripts/hooks/preinstall.js",
"documentation:check": "ts-node ./tools/scripts/hooks/documentation.check.ts",
"sandbox": "ts-node ./tools/scripts/sandbox.ts"
},
"private": false,
"dependencies": {
"@algolia/client-search": "^4.10.5",
"@docusaurus/core": "^2.0.0-beta.8",
"@docusaurus/preset-classic": "^2.0.0-beta.759298296",
"@docusaurus/theme-search-algolia": "^2.0.0-beta.8",
"@mdx-js/react": "^1.6.21",
"@types/xmldoc": "^1.1.6",
"chokidar": "^3.5.2",
"clsx": "^1.1.1",
"eslint": "8.9.0",
"glob": "^7.2.0",
"inquirer": "^8.2.0",
"prism-react-renderer": "^1.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rxjs": "^7.4.0",
"xmldoc": "^1.1.2",
"yargs-parser": "^21.0.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@commitlint/types": "^13.2.0",
"@nrwl/cli": "13.7.3",
"@nrwl/devkit": "13.7.3",
"@nrwl/eslint-plugin-nx": "13.7.3",
"@nrwl/jest": "13.7.3",
"@nrwl/linter": "13.7.3",
"@nrwl/node": "13.7.3",
"@nrwl/nx-cloud": "13.1.2",
"@nrwl/nx-plugin": "13.7.3",
"@nrwl/tao": "13.7.3",
"@nrwl/workspace": "13.7.3",
"@nx-dotnet/nxdoc": "latest",
"@nx-plus/docusaurus": "^12.2.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3",
"@types/is-ci": "^3.0.0",
"@types/jest": "27.0.3",
"@types/node": "17.0.18",
"@types/react": "17",
"@types/rimraf": "^3.0.2",
"@types/tmp": "^0.2.3",
"@types/yargs-parser": "^20.2.1",
"@typescript-eslint/eslint-plugin": "5.12.0",
"@typescript-eslint/parser": "5.10.2",
"dotenv": "10.0.0",
"eslint-config-prettier": "8.3.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.2",
"jest": "27.5.1",
"kill-port": "^1.6.1",
"lint-staged": "^12.3.4",
"prettier": "2.5.1",
"run-p": "*",
"semantic-release": "^18.0.1",
"ts-jest": "27.1.2",
"ts-node": "~10.4.0",
"tslib": "^2.3.1",
"typescript": "4.5.4",
"verdaccio": "^5.3.2"
},
"lint-staged": {
"**/*.{js,ts,md,json}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/nx-dotnet/nx-dotnet.git"
},
"version": "1.9.1"
}