-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.39 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
{
"name": "next-bundle-analyzer",
"version": "0.6.8",
"description": "NextJS version of Webpack Bundle Analyzer.",
"repository": "https://github.com/josselinbuils/next-bundle-analyzer.git",
"author": "Josselin BUILS",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && yarn build:plugin && yarn build:client",
"build:client": "NODE_ENV=production webpack",
"build:plugin": "rollup -c",
"dev": "yarn dev:plugin & yarn dev:client",
"dev:plugin": "yarn build:plugin -w",
"dev:client": "NODE_ENV=development webpack serve",
"lint": "eslint .",
"prepublish": "yarn build",
"pre-commit": "exec-staged",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"open": "^8.4.0",
"webpack-bundle-analyzer": "^4.6.1"
},
"peerDependencies": {
"next": "10 || 11 || 12 || 13 || 14"
},
"devDependencies": {
"@carrotsearch/foamtree": "3.5.0",
"@josselinbuils/eslint-config-typescript": "0.4.1",
"@josselinbuils/exec-staged": "1.0.2",
"@prefresh/webpack": "3.3.4",
"@rollup/plugin-commonjs": "23.0.2",
"@rollup/plugin-typescript": "9.0.2",
"@types/jest": "29.2.0",
"@types/lodash": "4.14.186",
"@types/node": "18.11.3",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.40.1",
"@typescript-eslint/parser": "5.40.1",
"classnames": "2.3.2",
"css-loader": "6.7.1",
"cssnano": "5.1.13",
"eslint": "8.26.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-preact": "1.3.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "2.26.0",
"filesize": "10.0.5",
"html-inline-script-webpack-plugin": "3.1.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.1",
"jest": "29.2.1",
"lodash": "4.17.21",
"next": "12.3.1",
"postcss-icss-values": "2.0.2",
"postcss-loader": "7.0.1",
"preact": "10.11.2",
"prettier": "2.7.1",
"rollup": "3.2.3",
"sass": "1.55.0",
"sass-loader": "13.1.0",
"style-loader": "3.3.1",
"ts-jest": "29.0.3",
"ts-loader": "9.4.1",
"typescript": "4.8.4",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.11.1"
},
"keywords": [
"Next",
"Next.js",
"bundle",
"analyzer",
"performance",
"modules",
"size"
]
}