-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
82 lines (82 loc) · 2.3 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
{
"name": "bundle-stats-workspaces",
"workspaces": [
"packages/cli",
"packages/cli-utils",
"packages/gatsby-plugin",
"packages/html-templates",
"packages/next-plugin",
"packages/plugin-webpack-filter",
"packages/plugin-webpack-validate",
"packages/rollup-plugin",
"packages/ui",
"packages/utils",
"packages/webpack-plugin"
],
"private": true,
"description": "Analyze webpack stats(bundle size, assets, modules, packages) and compare the results between different builds.",
"engines": {
"node": ">= 14.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@tsconfig/node14": "14.1.2",
"@types/react": "18.3.13",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"babel-eslint": "10.1.0",
"dotenv": "16.4.7",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-webpack": "0.13.10",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.10.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "9.1.7",
"lerna": "8.1.9",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"react-is": "^18.3.1",
"typescript": "5.7.2",
"verdaccio": "^5.26.2"
},
"scripts": {
"build": "lerna run build",
"bump": "./scripts/bump.sh",
"format": "prettier --write \"**/*.{js,jsx}\"",
"lerna": "lerna",
"lint": "lerna exec 'npm run lint -- --quiet'",
"release": "./scripts/release.sh",
"test": "lerna run test",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/relative-ci/bundle-stats.git"
},
"keywords": [
"webpack",
"bundle",
"assets",
"modules",
"size"
],
"author": {
"name": "Viorel Cojocaru",
"email": "[email protected]",
"url": "https://relative-ci.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/relative-ci/bundle-stats/issues"
},
"homepage": "https://github.com/relative-ci/bundle-stats#readme"
}