forked from weaveworks/weave-gitops
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
126 lines (126 loc) · 3.68 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
{
"name": "@weaveworks/weave-gitops",
"version": "0.38.0",
"description": "Weave GitOps core",
"targets": {
"default": {
"distDir": "bin/dist",
"source": "ui/index.html",
"sourceMap": false,
"publicUrl": "./"
},
"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": "^17.0.2",
"react-dom": "^17.0.2",
"react-toastify": "^7.0.4",
"styled-components": "^5.3.0"
},
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"d3": "^7.6.1",
"d3-dag": "^0.11.5",
"history": "^5.0.0",
"http-proxy-middleware": "^2.0.3",
"jest-canvas-mock": "^2.4.0",
"jest-fail-on-console": "^3.0.1",
"jest-worker": "^27.5.1",
"js-sha3": "0.8.0",
"lodash": "^4.17.21",
"luxon": "^3.2.1",
"mnemonic-browser": "^0.0.1",
"postcss": "^8.4.31",
"query-string": "^4.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-lottie-player": "^1.4.3",
"react-markdown": "^8.0.7",
"react-query": "^3.34.7",
"react-router-dom": "^5.2.0",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^9.1.2",
"remark-gfm": "^3.0.1",
"styled-components": "^5.3.0",
"yaml": "^2.2.2"
},
"jest": {
"preset": "ts-jest",
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/ui/lib/fileMock.js",
"\\.(css|less)$": "<rootDir>/ui/lib/fileMock.js"
},
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"testEnvironment": "jsdom"
},
"devDependencies": {
"@parcel/config-default": "^2.8.3",
"@parcel/optimizer-data-url": "^2.8.3",
"@parcel/transformer-inline-string": "^2.8.3",
"@parcel/transformer-typescript-tsc": "^2.8.3",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^6.0.0",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.165",
"@types/luxon": "^1.26.5",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"@types/react-router-dom": "^5.1.6",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"buffer": "^5.7.1",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.3.1",
"jest-styled-components": "^7.0.4",
"jsdom": "^16.6.0",
"parcel": "^2.8.3",
"prettier": "^2.6.2",
"process": "^0.11.10",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.1.1",
"typescript": "^5.2.2",
"yarn-audit-fix": "^10.0.1"
},
"alias": {
"yaml": "yaml/browser/dist/index.js"
},
"resolutions": {
"htmlnano": "2.0.3"
}
}