forked from docschina/webpack.js.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
185 lines (185 loc) · 7 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
{
"name": "webpack.js.org",
"version": "0.1.2",
"private": true,
"description": "The main site for all things webpack.",
"homepage": "https://github.com/webpack/webpack.js.org",
"author": "Greg Venech",
"license": "CC BY 4.0",
"main": "n/a",
"keywords": [
"webpack",
"documentation",
"build",
"tool"
],
"repository": {
"type": "git",
"url": "https://github.com/webpack/webpack.js.org.git"
},
"bugs": {
"url": "https://github.com/webpack/webpack.js.org/issues"
},
"engines": {
"node": ">=8.9.4"
},
"scripts": {
"clean-dist": "rimraf ./dist",
"clean-printable": "rimraf src/content/**/printable.md",
"preclean": "run-s clean-dist clean-printable",
"clean": "rimraf src/content/**/_*.md src/**/_*.json repositories/*.json",
"start": "npm run clean-dist && cross-env NODE_ENV=development webpack-dev-server --config webpack.dev.js --env.dev --progress",
"content": "node src/scripts/build-content-tree.js ./src/content ./src/_content.json",
"bundle-analyze": "run-s clean fetch printable content && cross-env NODE_ENV=production webpack --config webpack.ssg.js && run-s clean-printable content && cross-env NODE_ENV=production webpack --config webpack.prod.js --profile --json > stats.json && webpack-bundle-analyzer stats.json",
"fetch-repos": "node src/utilities/fetch-package-repos.js",
"fetch": "run-p fetch:*",
"fetch:readmes": "node src/utilities/fetch-package-readmes.js",
"fetch:supporters": "node src/utilities/fetch-supporters.js",
"fetch:starter-kits": "node src/utilities/fetch-starter-kits.js",
"prebuild": "npm run clean",
"build": "run-s fetch printable content && cross-env NODE_ENV=production webpack --config webpack.ssg.js && run-s clean-printable content && cross-env NODE_ENV=production webpack --config webpack.prod.js",
"postbuild": "npm run sitemap",
"build-test": "npm run build && http-server dist/",
"test": "npm run lint",
"lint": "run-s lint:*",
"lint:js": "npm run lint-js src",
"lint-js": "eslint --ext .js,.jsx,.md --cache --cache-location .cache/.eslintcache",
"lint:markdown": "npm run lint-markdown *.md ./src/content/**/*.md",
"lint-markdown": "markdownlint --rules markdownlint-rule-emphasis-style --config ./.markdownlint.json --ignore './src/content/**/_*.md'",
"lint:social": "alex . -q",
"lint:prose": "cp .proselintrc ~/ && proselint src/content",
"lint:links": "hyperlink -c 8 --root dist -r dist/index.html --canonicalroot https://webpack.js.org/ --internal --skip /plugins/extract-text-webpack-plugin/ --skip /printable --skip https:// --skip http:// --skip sw.js > internal-links.tap; cat internal-links.tap | tap-spot",
"lint:heading": "textlint --fix src/content/*",
"lint:heading-blog": "textlint --fix src/content/blog/*",
"lint:headingMDX": "textlint --fix src/content/**/*.mdx",
"sitemap": "cd dist && sitemap-static --ignore-file=../sitemap-ignore.json --pretty --prefix=https://webpack.js.org/ > sitemap.xml",
"serve": "npm run build && sirv start ./dist --port 4000",
"deploy": "gh-pages -d dist",
"preprintable": "npm run clean-printable",
"printable": "node ./src/scripts/concatenate-docs.js",
"jest": "jest",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:ci": "start-server-and-test http-get://localhost:3000 cypress:run"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,md}": [
"npm run lint-js"
],
"*.md": [
"npm run lint-markdown"
]
},
"bundlesize": [
{
"path": "./dist/index.bundle.js",
"maxSize": "200 kB"
}
],
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.11.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@mdx-js/loader": "^1.6.16",
"@octokit/rest": "^18.0.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.2",
"alex": "^5.1.0",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"bundlesize": "^0.18.0",
"copy-webpack-plugin": "^6.1.0",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"css-minimizer-webpack-plugin": "^1.1.3",
"cypress": "^5.3.0",
"directory-tree": "^2.2.4",
"directory-tree-webpack-plugin": "^1.0.2",
"docschina-remark-slugger": "^0.1.4",
"duplexer": "^0.1.1",
"eslint": "^7.8.1",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-markdown": "^1.0.2",
"file-loader": "^6.1.0",
"fontgen-loader": "git://github.com/chenxsan/fontgen-loader.git#bugfix/fix-this-exec",
"front-matter": "^4.0.2",
"gh-pages": "^3.1.0",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"http-server": "^0.12.3",
"husky": "^4.3.0",
"hyperlink": "^4.5.3",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"lodash": "^4.17.19",
"markdownlint": "^0.20.4",
"markdownlint-cli": "^0.23.2",
"markdownlint-rule-emphasis-style": "^1.0.0",
"mini-css-extract-plugin": "^1.0.0",
"minimist": "1.2.3",
"mkdirp": "^1.0.4",
"modularscale-sass": "^3.0.3",
"node-sass": "^4.5.3",
"npm-run-all": "^4.1.1",
"postcss": "^7.0.32",
"postcss-loader": "^4.0.1",
"react-refresh": "^0.8.3",
"redirect-webpack-plugin": "^1.0.0",
"remark": "^12.0.1",
"remark-autolink-headings": "^6.0.1",
"remark-custom-blockquotes": "1.0.0",
"remark-extract-anchors": "1.1.1",
"remark-html": "^12.0.0",
"remark-loader": "^1.0.0",
"remark-refractor": "git://github.com/montogeek/remark-refractor.git",
"remark-responsive-tables": "1.0.0",
"remark-slug": "^6.0.0",
"request-promise": "4.2.4",
"rimraf": "^3.0.2",
"sass-loader": "^10.0.2",
"sirv-cli": "^1.0.6",
"sitemap-static": "^0.4.2",
"start-server-and-test": "^1.11.0",
"static-site-generator-webpack-plugin": "^3.4.1",
"style-loader": "^2.0.0",
"tap-spot": "^1.1.1",
"terser-webpack-plugin": "^4.1.0",
"textlint": "^11.6.3",
"textlint-rule-heading": "^1.0.10",
"through2": "^2.0.3",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^5.0.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^5.1.4",
"workbox-webpack-plugin": "^5.1.4"
},
"dependencies": {
"docsearch.js": "^2.5.2",
"gitter-sidecar": "^1.2.3",
"javascriptstuff-db": "^1.12.0",
"lodash.throttle": "^4.1.1",
"path-browserify": "^1.0.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-banner": "^1.0.0-rc.0",
"react-document-title": "^2.0.3",
"react-dom": "^16.8.6",
"react-g-analytics": "0.4.2",
"react-router-dom": "^5.2.0",
"react-tiny-popover": "5",
"react-visibility-sensor": "^5.0.2",
"webpack-pwa-manifest": "^4.0.0",
"webpack.vote": "https://github.com/webpack/voting-app.git"
},
"resolutions": {
"remark-responsive-tables": "git://github.com/chenxsan/remark-responsive-tables.git#bugfix/fix-empty-head"
}
}