forked from saucelabs/network-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.57 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.57 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
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
{
"name": "network-viewer",
"version": "1.1.1",
"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": "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",
"prepublishOnly": "npm prune && npm run build",
"release": "npm run release:patch",
"release:patch": "np patch",
"release:minor": "np minor",
"release:major": "np major"
},
"author": "The Sauce Labs Insights Team <insights@saucelabs.com>",
"contributors": [
"Farhan Chauhan <farhan687@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/saucelabs/network-viewer/issues"
},
"homepage": "https://github.com/saucelabs/network-viewer#readme",
"dependencies": {
"axios": "0.19.2",
"classnames": ">=2.2.6",
"immutable": ">=3.8.2",
"react-dropzone": "11.0.1",
"react-flexbox-grid": "2.1.2",
"react-popover": "0.5.10",
"recharts": ">=1.8.5",
"qs": "^6.9.4"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@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.0.4",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-replace": "^2.3.3",
"@svgr/rollup": "^5.4.0",
"autoprefixer": "^9.8.4",
"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": "^4.1.10",
"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": "^4.13.1",
"np": "^6.2.4",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.32",
"postcss-cli": "^7.1.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "^3.4.3",
"react-test-renderer": "^16.13.1",
"recharts": "1.8.5",
"rimraf": "^3.0.2",
"rollup": "^2.18.2",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-smart-asset": "^2.0.7",
"sass": "^1.26.8",
"yargs-parser": "^13.1.2"
}
}