-
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": "vio@beanon.com",
"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": "3.3.10",
"@bundle-stats/utils": "3.3.10",
"@moonwalker/orbit-ui": "1.14.26",
"@storybook/react": "5.3.21",
"classnames": "2.5.1",
"convert-units": "2.3.4",
"core-js": "3.23.3",
"ganalytics": "^3.1.3",
"lodash": "4.17.21",
"preact": "^10.3.0",
"preact-helmet": "4.0.0-alpha-3",
"preact-router": "^4.0.0",
"prop-types": "15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"recompose": "0.30.0",
"uuid": "^7.0.0",
"whatwg-fetch": "3.6.2"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.18.6",
"@babel/plugin-transform-react-jsx": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-react": "7.18.6",
"@relative-ci/agent": "3.1.3",
"autoprefixer": "10.2.4",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "28.1.1",
"babel-loader": "8.2.5",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-preact-require": "1.0.0",
"bundle-stats": "3.3.10",
"copy-webpack-plugin": "11.0.0",
"coveralls": "3.1.1",
"cross-env": "7.0.2",
"css-loader": "6.7.1",
"cssnano": "5.1.12",
"dotenv": "16.0.1",
"eslint": "8.18.0",
"eslint-config-airbnb": "19.0.4",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-react": "7.30.1",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.0.0",
"jest": "28.1.1",
"mini-css-extract-plugin": "2.6.1",
"postcss": "8.2.4",
"postcss-loader": "7.0.0",
"stats-webpack-plugin": "0.7.0",
"stylelint": "14.9.1",
"stylelint-config-css-modules": "4.1.0",
"stylelint-config-standard": "26.0.0",
"terser-webpack-plugin": "2.3.8",
"webpack": "4.46.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "4.9.2",
"webpack-merge": "4.2.2"
}
}