forked from jedireza/hapi-react-views
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "hapi-react-views",
"version": "10.0.0",
"description": "A hapi view engine for React components.",
"main": "index.js",
"scripts": {
"test": "lab -c -L --assert code -I '__core-js_shared__'",
"simple-example": "node examples/simple/server",
"layout-example": "node examples/layout/server",
"layout-component-example": "node examples/layout-component/server",
"remount-example": "webpack --config examples/remount/webpack.js && node examples/remount/server"
},
"repository": {
"type": "git",
"url": "https://github.com/jedireza/hapi-react-views"
},
"keywords": [
"hapi",
"react",
"views",
"universal",
"isomorphic"
],
"author": "Reza Akhavan <[email protected]> (http://reza.akhavan.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jedireza/hapi-react-views/issues"
},
"homepage": "https://github.com/jedireza/hapi-react-views",
"dependencies": {
"hoek": "5.x.x"
},
"peerDependencies": {
"react": "16.x.x",
"react-dom": "16.x.x "
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-core": "6.x.x",
"babel-loader": "7.x.x",
"babel-preset-env": "1.x.x",
"babel-preset-react": "6.x.x",
"code": "5.x.x",
"hapi": "17.x.x",
"inert": "5.x.x",
"lab": "15.x.x",
"react": "16.x.x",
"react-dom": "16.x.x",
"vision": "5.x.x",
"webpack": "3.x.x"
}
}