forked from saucelabs/network-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.79 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": "network-viewer",
"version": "1.1.8",
"main": "./lib/index.js",
"scripts": {
"start": "concurrently -n 'library,example' -c 'bgBlue.bold,bgGreen.bold' 'npm run watch:lib' 'npm run watch:examples'",
"test:lint": "eslint ./src/**/*.js*",
"test:unit": "jest",
"test": "run-s test:*",
"lint:fix": "npm run test:lint --quiet --fix",
"build:lib": "rollup --config ./config/rollup/lib.js",
"build:es6": "rollup --config ./config/rollup/es6.js",
"build:umd": "rollup --config ./config/rollup/umd.js",
"build:examples": "cd examples && npm run build",
"build:package:ci": "run-s build:lib build:es6 build:umd",
"build": "run-s build:*",
"watch:lib": "rollup --config ./config/rollup/lib.js -w",
"watch:examples": "cd examples && npm run start",
"deploy": "gh-pages -d examples/build",
"publish-demo": "npm run build:examples && npm run deploy",
"release": "release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major"
},
"author": "The Sauce Labs Insights Team <[email protected]>",
"contributors": [
"Farhan Chauhan <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/saucelabs/network-viewer/issues"
},
"homepage": "https://github.com/saucelabs/network-viewer#readme",
"files": [
"es6/",
"lib/",
"umd/"
],
"dependencies": {
"axios": "0.21.1",
"classnames": ">=2.2.6",
"immutable": ">=3.8.2",
"qs": "^6.9.4",
"react-dropzone": "11.0.1",
"react-flexbox-grid": "2.1.2",
"react-popover": "0.5.10",
"recharts": ">=1.8.5"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.10.2",
"@babel/plugin-external-helpers": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-replace": "^3.0.0",
"@svgr/rollup": "^5.4.0",
"autoprefixer": "^10.3.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"camelcase": "^6.0.0",
"classnames": "2.2.6",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"cssnano": "^5.0.7",
"deepmerge": "^4.2.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"gh-pages": "^3.0.0",
"http-proxy": "^1.18.1",
"identity-obj-proxy": "^3.0.0",
"immutable": "3.8.2",
"jest": "^26.0.1",
"jest-environment-jsdom-fourteen": "^1.0.1",
"jest-resolve": "^26.0.1",
"jest-watch-typeahead": "^0.6.0",
"kind-of": "^6.0.3",
"node-forge": "^0.10.0",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "^4.0.3",
"react-test-renderer": "^16.13.1",
"recharts": "1.8.5",
"release-it": "^14.10.1",
"rimraf": "^3.0.2",
"rollup": "^2.53.3",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-smart-asset": "^2.1.2",
"sass": "^1.36.0",
"yargs-parser": "^13.1.2"
}
}