-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
117 lines (117 loc) · 3.65 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
{
"name": "coral",
"private": true,
"version": "0.0.1",
"type": "module",
"main": "",
"license": "Apache-2.0",
"engineStrict": true,
"engines": {
"node": ">=20.0.0 <21.0.0",
"pnpm": ">=9.0.0 <10.0.0",
"yarn": "❗Please use pnpm to assure a consistent package management.",
"npm": "❗Please use pnpm to assure a consistent package management."
},
"scripts": {
"build": "tsc && vite build",
"dev": "vite --mode remote-api",
"start": "pnpm dev",
"dev-without-api": "vite",
"lint": "prettier --check . && eslint .",
"lint-staged": "lint-staged",
"preview": "vite build --mode remote-api && vite preview --mode remote-api",
"reformat": "prettier --write . proxy",
"test": "jest",
"test-ci": "jest --ci",
"test-dev": "jest --watch",
"tsc": "tsc -p tsconfig.json",
"bundle-analyze": "BUNDLE_ANALYZE=1 vite build",
"extract-api-types": "openapi-typescript ../openapi.yaml --output types/api.d.ts --make-paths-enum --export-type",
"add-precommit": "git config --local core.hooksPath .githooks/",
"generate-toc": "node scripts/markdown-toc.cjs && prettier --write '**/*.md' '../**/*.md'"
},
"lint-staged": {
"**/!(*api.d).{ts,tsx,js,cjs}": [
"prettier --check",
"eslint"
],
"**/*.{md, css}": [
"prettier --check"
]
},
"dependencies": {
"@aivenio/aquarium": "1.79.0",
"@hookform/resolvers": "^3.9.0",
"@monaco-editor/react": "^4.6.0",
"@tanstack/react-query": "^4.29.5",
"@types/react-syntax-highlighter": "^15.5.13",
"monaco-editor": "^0.52.0",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.53.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.27.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-parse": "^9.0.1",
"rehype-remark": "^10.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^4.29.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^20.12.12",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.3.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-react": "^7.37.2",
"glob": "^11.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fail-on-console": "^3.3.1",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"msw": "^2.6.4",
"openapi-typescript": "^7.4.1",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"react-aria": "^3.34.3",
"react-test-renderer": "^18.3.1",
"rollup-plugin-visualizer": "^5.12.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^4.5.3",
"vite-plugin-svgr": "^4.3.0",
"whatwg-fetch": "^3.6.20"
},
"peerDependencies": {
"json5": ">=1.0.2",
"yaml": "2.2.2"
},
"alex": {
"noBinary": true,
"profanitySureness": 1
}
}