-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
111 lines (111 loc) · 3.83 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@redhat-cloud-services/javascript-clients",
"version": "0.0.1",
"description": "Javascript clients for swagger API",
"main": "index.js",
"private": true,
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"install": "mvn install -q -DskipTests",
"build:generator": "mvn clean package -q -DskipTests",
"create-client": "utils/create-client.sh",
"doc": "npm run doc --workspaces",
"release:bot": "node config/release.js",
"nx": "nx",
"nx:reset": "nx reset",
"prepare": "husky install",
"dev": "nx run test-app:serve",
"test:unit": "nx run-many -t test --exclude=@redhat-cloud-services/CLIENTNAME-client",
"test:unit:affected": "nx affected -t test --exclude=@redhat-cloud-services/CLIENTNAME-client",
"test": "npm-run-all --parallel test:* --exclude=@redhat-cloud-services/CLIENTNAME-client",
"build": "nx run-many -t build --exclude=@redhat-cloud-services/CLIENTNAME-client",
"build:no-cache": "npm run build -- --skip-nx-cache",
"generate": "nx run-many -t generate --exclude=@redhat-cloud-services/CLIENTNAME-client",
"lint": "nx run-many -t lint --exclude=@redhat-cloud-services/CLIENTNAME-client",
"lint:fix": "nx run-many -t lint --fix --exclude=@redhat-cloud-services/CLIENTNAME-client",
"version": "nx run-many -t version --exclude=@redhat-cloud-services/CLIENTNAME-client"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RedHatInsights/javascript-clients.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/RedHatInsights/javascript-clients/issues"
},
"homepage": "https://github.com/RedHatInsights/javascript-clients#readme",
"dependencies": {
"@emotion/react": "11.11.1",
"@nx/devkit": "17.1.3",
"@openshift/dynamic-plugin-sdk-webpack": "^3.0.0",
"eslint-plugin-prettier": "^5.0.1",
"fs-extra": "^11.2.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.1",
"@jscutlery/semver": "^4.1.0",
"@nx/cypress": "17.1.3",
"@nx/eslint": "17.1.3",
"@nx/eslint-plugin": "17.1.3",
"@nx/jest": "17.1.3",
"@nx/js": "17.1.3",
"@nx/plugin": "17.1.3",
"@nx/react": "17.1.3",
"@nx/web": "17.1.3",
"@nx/webpack": "17.1.3",
"@nx/workspace": "17.1.3",
"@octokit/rest": "^17.6.0",
"@openapitools/openapi-generator-cli": "^2.13.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/jest": "^29.4.0",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"axios": "^0.27.2",
"cypress": "^13.0.0",
"dotenv": "^8.2.0",
"eslint": "~8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.13.4",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^29.4.1",
"jsonc-eslint-parser": "^2.4.0",
"lerna": "^5.6.2",
"ngx-deploy-npm": "^7.1.0",
"npm-run-all": "^4.1.5",
"nx": "^17.2.0",
"prettier": "^3.1.0",
"react-refresh": "^0.10.0",
"replace-json-property": "^1.9.0",
"swc-loader": "^0.2.3",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.8.4",
"url-loader": "^4.1.1",
"verdaccio": "^5.0.4",
"webpack-merge": "^5.10.0",
"zod": "^3.22.4"
}
}