This repository has been archived by the owner on Aug 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 253
/
package.json
107 lines (107 loc) · 3.41 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
{
"name": "vector",
"version": "2.0.0-beta1",
"description": "Vector is an Instance-Level, On-Demand, High-Resolution Monitoring Framework. It's a web-base UI that leverages Performance Co-Pilot (PCP) in the backend.",
"author": "Jason Koch <[email protected]>",
"main": "src/app/index.html",
"repository": "https://github.com/Netflix/vector",
"license": "Apache-2.0",
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/runtime": "^7.5.5",
"chai": "^4.1.2",
"color-hash": "^1.0.3",
"d3-scale": "^2.1.0",
"d3-selection": "^1.3.2",
"d3-svg-legend": "^2.25.6",
"font-awesome": "4.6.1",
"font-awesome-webpack-4": "git+https://github.com/tapz/font-awesome-webpack#da547ed91064b408500131f837f17f423ce89411",
"http-server-spa": "^1.3.0",
"lodash-es": "^4.17.10",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"memoize-one": "^4.0.0",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-error-boundary": "^1.2.3",
"react-grid-layout": "^0.16.6",
"react-router-dom": "^4.3.1",
"semantic-ui-css": "^2.3.3",
"semantic-ui-react": "^0.82.0",
"semiotic": "^1.14.2",
"superagent": "^3.8.3",
"webpack-merge": "^4.1.4",
"why-did-you-update": "^0.1.1"
},
"scripts": {
"build": "webpack --display-error-details --config webpack.dev.js",
"build-prod": "webpack --display-error-details --config webpack.prod.js",
"test": "jest --coverage",
"serve": "http-server-spa dist index.html 3000"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@types/jest": "^24.0.16",
"babel-eslint": "^8.2.5",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.16.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.10.0",
"estraverse": "~4.1.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"less": "^3.0.4",
"query-string": "^4.3.4",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"uglify-save-license": "~0.4.1",
"url-loader": "^1.0.1",
"webpack": "^4.12.2",
"webpack-auto-inject-version": "^1.1.0",
"webpack-cli": "^3.0.8",
"worker-loader": "^2.0.0",
"wrench": "~1.5.8"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/test/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/test/__mocks__/fileMock.js",
"^config$": "<rootDir>/src/config.js"
},
"transform": {
"^.+\\.jsx$": "babel-jest",
"^.+\\.js$": "babel-jest"
},
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-transform-runtime",
"@babel/plugin-transform-async-to-generator",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
}
}