-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.44 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
{
"name": "@relative-ci/compare",
"version": "1.10.0",
"description": "Side by side comparison for webpack/lighthouse/browsertime stats",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.development.js --progress --hot --mode development",
"build": "rm -fr ./dist && cross-env NODE_ENV=production webpack --config webpack.config.production.js --mode production",
"storybook": "cross-env NODE_ENV=development start-storybook -p 8090 -c storybook",
"test": "cross-env NODE_ENV=test jest --coverage --coverageDirectory ./artifacts/coverage",
"lint": "eslint . --ext .jsx,.js --cache --cache-location ./node_modules/.eslintcache"
},
"keywords": [
"webpack",
"lighthouse",
"browsertime",
"bundle-size",
"bundle",
"assets",
"chunks",
"modules",
"size"
],
"author": {
"name": "Viorel Cojocaru",
"email": "[email protected]",
"url": "https://beanon.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/relative-ci/compare.git"
},
"bugs": {
"url": "https://github.com/relative-ci/compare/issues"
},
"homepage": "https://github.com/relative-ci/compare/#readme",
"jest": {
"transform": {
"\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx"
]
},
"dependencies": {
"@babel/polyfill": "7.12.1",
"@bundle-stats/ui": "2.2.0",
"@bundle-stats/utils": "2.2.0",
"@moonwalker/orbit-ui": "1.14.17",
"@storybook/react": "5.3.21",
"classnames": "2.2.6",
"convert-units": "2.3.4",
"core-js": "3.6.5",
"ganalytics": "^3.1.3",
"lodash": "4.17.20",
"preact": "^10.3.0",
"preact-helmet": "4.0.0-alpha-3",
"preact-router": "^3.2.1",
"prop-types": "15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"recompose": "0.30.0",
"uuid": "^7.0.0",
"whatwg-fetch": "3.4.0"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/plugin-transform-react-jsx": "7.12.7",
"@babel/preset-env": "7.12.7",
"@babel/preset-react": "7.12.7",
"@relative-ci/agent": "1.4.0",
"autoprefixer": "9.8.6",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "25.5.1",
"babel-loader": "8.2.2",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-preact-require": "1.0.0",
"bundle-stats": "1.15.8",
"copy-webpack-plugin": "5.1.2",
"coveralls": "3.1.0",
"cross-env": "7.0.3",
"css-loader": "4.3.0",
"cssnano": "4.1.10",
"dotenv": "8.2.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-import-resolver-webpack": "0.13.0",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.20.6",
"file-loader": "6.2.0",
"html-webpack-plugin": "4.3.0",
"jest": "25.5.4",
"mini-css-extract-plugin": "0.9.0",
"postcss": "7.0.35",
"postcss-loader": "3.0.0",
"stats-webpack-plugin": "0.7.0",
"stylelint": "13.6.1",
"stylelint-config-css-modules": "2.2.0",
"stylelint-config-standard": "20.0.0",
"terser-webpack-plugin": "2.3.8",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0",
"webpack-merge": "4.2.2"
}
}