-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
135 lines (135 loc) · 3.88 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@weaveworks/weave-gitops",
"version": "0.38.0",
"description": "Weave GitOps core",
"targets": {
"default": {
"distDir": "bin/dist",
"source": "ui/index.html",
"sourceMap": false,
"publicUrl": "./",
"engines": {
"browsers": "> 0.5%, last 2 versions, not dead"
}
},
"lib": {
"includeNodeModules": false,
"isLibrary": true,
"outputFormat": "commonjs",
"distDir": "dist",
"source": "ui/index.ts",
"sourceMap": false
}
},
"scripts": {
"build": "parcel build --target default",
"build:lib": "parcel build --target lib",
"typedefs": "tsc --declaration --skipLibCheck --emitDeclarationOnly --outDir dist -p .",
"start": "parcel serve --port 4567 ui/index.html",
"lint": "eslint ui --max-warnings 0",
"prettify:check": "prettier --check ui",
"prettify:format": "prettier --write ui",
"test": "jest",
"watch": "jest --runInBand --watch",
"coverage": "jest --coverage",
"typecheck": "tsc --noemit"
},
"repository": {
"type": "git",
"url": "git://github.com/weaveworks/weave-gitops.git"
},
"bugs": {
"url": "https://github.com/weaveworks/weave-gitops/issues"
},
"homepage": "https://github.com/weaveworks/weave-gitops#readme",
"peerDependencies": {
"lodash": "^4.17.21",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-toastify": "^7.0.4",
"styled-components": "^6.1.14"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.3.1",
"@mui/lab": "^6.0.0-beta.21",
"@mui/material": "^6.3.1",
"@types/styled-components": "^5.1.34",
"ansi-styles": "^6.2.1",
"d3": "^7.9.0",
"d3-dag": "^0.11.5",
"history": "^5.3.0",
"http-proxy-middleware": "^3.0.3",
"install": "^0.13.0",
"jest-canvas-mock": "^2.5.2",
"js-sha3": "0.9.3",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"mnemonic-browser": "^0.0.1",
"postcss": "^8.4.49",
"query-string": "^4.3.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-is": "^18.0.0",
"react-lottie-player": "^2.1.0",
"react-markdown": "^8.0.7",
"react-query": "^3.39.3",
"react-router-dom": "^5.2.0",
"react-syntax-highlighter": "^15.6.1",
"react-toastify": "^11.0.2",
"remark-gfm": "^3.0.1",
"styled-components": "^6.1.14",
"yaml": "^2.7.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@eslint/js": "9.17.0",
"@parcel/babel-preset-env": "^2.13.3",
"@parcel/config-default": "^2.8.3",
"@parcel/core": "^2.13.3",
"@parcel/optimizer-data-url": "^2.8.3",
"@parcel/transformer-inline-string": "^2.8.3",
"@parcel/transformer-typescript-tsc": "^2.13.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/react-hooks": "^7.0.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.14",
"@types/luxon": "^3.4.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-is": "^18",
"babel-jest": "^29.7.0",
"babel-plugin-styled-components": "^2.1.4",
"buffer": "^6.0.3",
"eslint": "9.17.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fail-on-console": "^3.3.1",
"jest-styled-components": "^7.2.0",
"jest-worker": "^29.7.0",
"jsdom": "^16.6.0",
"parcel": "^2.13.3",
"prettier": "^3.4.2",
"process": "^0.11.10",
"react-test-renderer": "^18.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.2.2",
"typescript-eslint": "^8.19.1",
"yarn-audit-fix": "^10.1.1"
},
"alias": {
"yaml": "yaml/browser/dist/index.js"
},
"resolutions": {
"cross-spawn": "^7.0.6",
"commander": "^13.0.0"
},
"engines": {
"node": ">=22.0"
},
"packageManager": "[email protected]"
}