forked from apache/qpid-dispatch
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.71 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.71 KB
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
{
"name": "dispatch-console",
"version": "1.16.0",
"private": true,
"dependencies": {
"@patternfly/patternfly": "^4.90.5",
"@patternfly/react-charts": "^6.14.6",
"@patternfly/react-core": "^4.101.3",
"@patternfly/react-icons": "^4.9.5",
"@patternfly/react-styles": "^4.8.5",
"@patternfly/react-table": "^4.23.14",
"@patternfly/react-topology": "^4.91.27",
"d3": "^3.5.17",
"d3-queue": "^3.0.7",
"express": "^4.17.1",
"font-awesome": "^4.7.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-fontawesome": "^1.7.1",
"react-router-dom": "^5.2.0",
"rhea": "^1.0.24",
"topojson-client": "^3.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app",
"ignorePatterns": [
"build/**",
"dist/**"
],
"overrides": [
{
"files": [
"test_data/schema.js"
],
"rules": {
"no-template-curly-in-string": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@react-mock/localstorage": "^0.1.2",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.22",
"body-parser": "^1.19.0",
"browserslist": "^4.16.3",
"jest-axe": "^4.1.0",
"prettier": "^2.2.1",
"react-scripts": "^4.0.3",
"typescript": "^4.2.3"
}
}