forked from zelphir/react-snap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "react-snap",
"version": "1.12.2",
"description": "Zero-configuration framework-agnostic static prerendering for SPAs",
"main": "index.js",
"author": "stereobooster",
"license": "MIT",
"repository": "stereobooster/react-snap",
"engines": {
"node": ">= 8.6.0"
},
"dependencies": {
"clean-css": "^4.1.9",
"express": "^4.16.1",
"express-history-api-fallback": "^2.2.1",
"glob-to-regexp": "^0.4.0",
"highland": "^2.11.1",
"html-minifier": "^3.5.5",
"minimalcss": "^0.7.5",
"mkdirp": "^0.5.1",
"puppeteer": "^1.2.0",
"serve-static": "^1.13.1",
"sourcemapped-stacktrace-node": "^2.1.6"
},
"devDependencies": {
"markdown-toc": "1.2.0",
"prettier": "1.12.1"
},
"scripts": {
"toc": "yarn run markdown-toc -i doc/recipes.md",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "prettier --write {*,src/*}.{js,json,css}"
},
"bin": {
"react-snap": "./run.js"
},
"files": [
"index.js",
"run.js",
"src/",
"vendor/"
],
"reactSnap": {
"destination": "tmp",
"inlineCss": true,
"cacheAjaxRequests": true
}
}