forked from reuters-graphics/html-webpack-prerender-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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
{
"name": "html-webpack-prerender-plugin",
"description": "A plugin to prerender and inject JavaScript apps into the static markup generated by html-webpack-plugin at build time.",
"version": "0.1.0",
"source": "index.js",
"main": "dist/index.js",
"files": [
"dist/*",
"docs/*"
],
"license": "MIT",
"private": false,
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"prerendering",
"pre-render",
"html-webpack-plugin",
"webpack",
"ssr",
"server-side rendering",
"seo"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "microbundle -f cjs --target node",
"test": "mocha"
},
"author": "Jon McClure <[email protected]>",
"repository": "github:reuters-graphics/html-webpack-prerender-plugin",
"homepage": "https://github.com/reuters-graphics/html-webpack-prerender-plugin#readme",
"peerDependencies": {
"html-webpack-plugin": "next"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@hobbes7878/eslint-config": "^0.0.2",
"babel-loader": "^8.2.2",
"eslint": "^7.21.0",
"expect.js": "^0.3.1",
"express": "^4.17.1",
"html-webpack-plugin": "^5.3.0",
"lodash": "^4.17.21",
"memory-fs": "^0.5.0",
"microbundle": "^0.13.0",
"mocha": "^8.3.1",
"portfinder": "^1.0.28",
"puppeteer": "^8.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet-async": "^1.0.9",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"regenerator-runtime": "^0.13.7",
"webpack": "^5.24.4",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.5",
"create-html-element": "^3.0.0",
"eval": "^0.1.6",
"jsdom": "^16.5.0",
"jsesc": "^2.5.2",
"node-fetch": "^2.6.1",
"schema-utils": "^2.7.1"
}
}