This repository has been archived by the owner on Jul 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
71 lines (71 loc) · 2.14 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
{
"name": "webui",
"version": "0.0.1",
"main": "index.js",
"repository": "git@github.com:fluxcd/webui.git",
"author": "Flux Maintainers",
"license": "Apache-2.0",
"scripts": {
"build": "parcel build --no-source-maps ui/index.html",
"start": "nodemon dev-server.js --watch dev-server.js",
"lint": "eslint ui",
"test": "jest",
"watch": "jest --runInBand --watch"
},
"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"
}
},
"dependencies": {
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^6.0.0",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.165",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.6",
"@types/styled-components": "^5.1.4",
"babel-jest": "^26.6.3",
"d3": "^6.6.0",
"d3-selection": "^2.0.0",
"dagre": "^0.8.5",
"dagre-d3": "^0.6.4",
"history": "^4.0.0",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.4",
"lodash": "^4.17.21",
"query-string": "^6.13.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^17.0.2",
"react-toastify": "^7.0.3",
"styled-components": "^5.2.1",
"ts-jest": "^26.5.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-plugin-import": "^2.22.1",
"express": "^4.17.1",
"http-proxy": "^1.18.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.6",
"parcel": "1.12.3",
"parcel-bundler": "1.12.3",
"prettier": "^2.2.1",
"typescript": "^4.1.2"
}
}