-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
109 lines (109 loc) · 3.59 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
{
"name": "network-viewer",
"version": "2.4.4",
"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",
"clean": "rm -rf .cache .tmp lib build"
},
"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": {
"@react-aria/overlays": "3.14.0",
"@react-aria/tooltip": "^3.3.0",
"@react-aria/utils": "^3.25.1",
"@react-stately/tooltip": "^3.4.11",
"axios": "0.21.2",
"classnames": ">=2.2.6",
"file-saver": "^2.0.5",
"immutable": ">=3.8.2",
"prop-types": "^15.7.2",
"qs": "^6.12.3",
"react": "^16.13.1",
"react-dropzone": "11.0.1",
"react-transition-group": "^4.4.1",
"react-window": "^1.8.10",
"recharts": ">=1.8.5"
},
"peerDependencies": {
"react": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^3.1.0",
"@svgr/rollup": "^5.5.0",
"autoprefixer": "^10.4.19",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"camelcase": "^6.3.0",
"classnames": "2.2.6",
"concurrently": "^5.3.0",
"cssnano": "^5.1.15",
"deepmerge": "^4.3.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.8",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"gh-pages": "^3.2.3",
"immutable": "3.8.2",
"jest": "^26.6.3",
"jest-environment-jsdom-fourteen": "^1.0.1",
"jest-watch-typeahead": "^0.6.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.39",
"prop-types": "^15.8.1",
"react-dom": "^16.14.0",
"react-scripts": "^5.0.1",
"recharts": "1.8.5",
"release-it": "^15.11.0",
"rollup": "^2.79.1",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-smart-asset": "^2.1.2",
"typescript": "^4.9.5",
"sass": "^1.77.8"
}
}