-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
120 lines (120 loc) · 3.89 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
112
113
114
115
116
117
118
119
120
{
"name": "apidocs",
"version": "0.1.0",
"private": true,
"homepage": "api-catalog",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "next build",
"prettier": "prettier --write \"**/*.tsx\"",
"dev": "concurrently \"node proxy.mjs\" \"DEV=true next dev\"",
"lint": "eslint --ext .js,.ts,.tsx ./src",
"start": "next start",
"circular": "madge --circular ./src --extensions js,ts,tsx",
"test": "npm exec jest --src discovery",
"clean": "npm run clean --workspaces --if-present",
"discovery": "npm-run-all discovery:build discovery:start",
"discovery:build": "npm run --workspace packages/common --workspace packages/transform build",
"discovery:start": "npm run --workspace packages/transform start -- --input-dir `npm prefix`/packages/discovery -o `npm prefix`/packages/common/config",
"sitemap": "npm-run-all sitemap:build sitemap:start",
"sitemap:build": "npm run --workspace packages/common -workspace packages/sitemap build",
"sitemap:start": "npm run --workspace packages/sitemap start -- -o `npm prefix`/public -b $SITEMAP_BASE_URL"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@patternfly/patternfly": "^5.0.0",
"@patternfly/react-code-editor": "^5.0.0",
"@patternfly/react-core": "^5.0.0",
"@patternfly/react-icons": "^5.0.0",
"@patternfly/react-styles": "^5.0.0",
"@patternfly/react-table": "^5.0.0",
"@patternfly/react-tokens": "^5.0.0",
"axios": "^1.5.1",
"eslint-config-next": "^15.0.2",
"httpsnippet-lite": "^3.0.4",
"immer": "^9.0.19",
"lodash.snakecase": "^4.1.1",
"lodash.startcase": "^4.4.0",
"mock-json-schema": "^1.1.1",
"next": "^15.0.2",
"prettier": "^3.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-markdown": "^8.0.7",
"react-router": "^6.9.0",
"react-router-dom": "^6.9.0",
"react-scripts": "5.0.1",
"react-use": "^17.4.0",
"web-vitals": "^2.1.4",
"zustand": "^4.4.1"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.14.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@spaship/cli": "^1.5.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^27.5.2",
"@types/lodash.snakecase": "^4.1.7",
"@types/lodash.startcase": "^4.4.7",
"@types/node": "^16.18.11",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-helmet": "^6.1.6",
"@types/swagger2openapi": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"ajv": "^8.12.0",
"assert-never": "^1.2.1",
"better-ajv-errors": "^1.2.0",
"concurrently": "^9.1.0",
"customize-cra": "^1.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"gh-pages": "^5.0.0",
"glob": "^9.2.1",
"monaco-editor-webpack-plugin": "^7.1.0",
"npm-run-all": "^4.1.5",
"openapi-types": "^12.1.0",
"react-app-rewired": "^2.2.1",
"read-json-value": "^1.0.2",
"rimraf": "^4.4.1",
"rollup": "^2.79.1",
"sass": "^1.57.1",
"sass-loader": "^12.6.0",
"sitemaps": "^2.0.4",
"swagger2openapi": "^7.0.8",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"typescript-eslint": "^8.13.0",
"yaml": "^2.2.1"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "ts-jest"
}
}
}