-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.15 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": "@redhat-exd/container-analytics",
"version": "1.0.4",
"main": "dist/analytics.js",
"license": "MIT",
"dependencies": {
"@patternfly/react-charts": "^5.2.2",
"@patternfly/react-core": "^3.124.1",
"@patternfly/react-icons": "^3.14.25",
"@patternfly/react-styles": "^3.6.15",
"@patternfly/react-table": "^2.24.41",
"@patternfly/react-tokens": "^2.7.10",
"d3-scale": "^3.2.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"numeral": "^2.0.6",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-csv": "^1.1.2",
"react-dom": "^16.9.0",
"react-simple-maps": "^1.0.0-beta.0",
"typescript": "^3.5.3"
},
"scripts": {
"start": "webpack --mode development --config webpack.config.js --progress --watch & live-server dist/",
"test": "jest --ci",
"lint": "tslint -p tsconfig.json",
"build": "webpack --mode production --config webpack.config.js --progress --display-error-details"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "[email protected]:redhat-aqe/container-analytics.git"
},
"publishConfig": {
"access": "public"
},
"files": ["dist"],
"devDependencies": {
"@types/d3-scale": "^2.1.1",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.146",
"@types/node": "12.7.2",
"@types/numeral": "^0.0.26",
"@types/prop-types": "^15.7.1",
"@types/react": "^16.9.2",
"@types/react-csv": "^1.1.1",
"@types/react-dom": "^16.9.0",
"@types/react-simple-maps": "^0.12.2",
"assets-webpack-plugin": "^3.9.10",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.0",
"css-loader": "^3.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"live-server": "^1.2.1",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"react-hot-loader": "^4.12.12",
"source-map-loader": "^0.2.4",
"svg-url-loader": "^3.0.2",
"terser-webpack-plugin": "^2.1.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"tslint": "^5.20.0",
"tslint-react": "^4.1.0",
"url-loader": "^2.1.0",
"webpack": "4.39.3",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "3.4.1"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"html",
"text"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"setupFiles": [
"<rootDir>/src/setupTests.js"
]
}
}