-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "prep",
"version": "1.6.2",
"description": "Server-side rendering tool for your web app. Prerenders your app into static HTML files and supports routing.",
"bin": "lib/index.js",
"files": [
"LICENSE",
"README.md",
"lib/",
"ssl/"
],
"scripts": {
"prepublish": "npm run build && chmod +x lib/index.js",
"build": "rm -rf lib && mkdir lib && babel src/index.js -o lib/index.js",
"test": "echo \"No tests yet\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphcool/prep.git"
},
"keywords": [
"server-side",
"rendering",
"react",
"render",
"webpack",
"angular",
"prerender",
"isomorphic"
],
"author": "Johannes Schickling <johannes@graph.cool>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphcool/prep/issues"
},
"homepage": "https://github.com/graphcool/prep#readme",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"debug": "^2.6.0",
"util": "^0.10.3"
},
"dependencies": {
"babel-runtime": "^6.20.0",
"bluebird": "^3.4.7",
"child-process-promise": "^2.0.2",
"commander": "^2.9.0",
"express": "^4.13.4",
"express-history-api-fallback": "^2.1.0",
"html-minifier": "^3.2.3",
"mkdirp": "^0.5.1",
"nightmare": "2.9.0",
"serve-static": "^1.10.2",
"sitemap": "^1.9.0"
}
}