forked from mubaidr/prerender-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "prerender-plugin",
"version": "1.0.6",
"description": "A Node.js/webpack plugin to prerender static HTML in a single page application.",
"keywords": [
"webpack",
"prerender",
"spa",
"single page application"
],
"homepage": "https://github.com/mubaidr/webpack-prerender-plugin",
"bugs": {
"url": "https://github.com/mubaidr/webpack-prerender-plugin/issues",
"email": "[email protected]"
},
"author": {
"name": "Muhammad Ubaid Raza",
"email": "[email protected]",
"url": "https://mubaidr.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/mubaidr/webpack-prerender-plugin.git"
},
"license": "MIT",
"main": "index.js",
"dependencies": {
"compression": "^1.7.1",
"connect-history-api-fallback": "^1.5.0",
"express": "^4.16.2",
"express-minify": "^1.0.0",
"fs-extra": "5.0.0",
"lodash.defaultsdeep": "^4.6.0",
"mkdirp": "^0.5.1",
"portfinder": "^1.0.13",
"puppeteer": "^0.13.0"
},
"devDependencies": {
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "next",
"eslint": "^4.15.0"
},
"engines": {
"node": ">=7.6.0"
}
}