-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "hapi-react-views",
"version": "11.0.0",
"description": "A hapi view engine for React components.",
"main": "index.js",
"scripts": {
"test": "lab -c -L --assert @hapi/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": {
"@hapi/hoek": "9.x.x"
},
"peerDependencies": {
"react": "16.x.x || 17.x.x || 18.x.x",
"react-dom": "16.x.x || 17.x.x || 18.x.x"
},
"devDependencies": {
"@babel/cli": "7.x.x",
"@babel/core": "7.x.x",
"@babel/preset-env": "7.x.x",
"@babel/preset-react": "7.x.x",
"@babel/register": "7.x.x",
"@hapi/code": "9.x.x",
"@hapi/hapi": "21.x.x",
"@hapi/inert": "7.x.x",
"@hapi/lab": "25.x.x",
"@hapi/vision": "7.x.x",
"ajv": "8.11.2",
"babel-loader": "9.x.x",
"react": "18.x.x",
"react-dom": "18.x.x",
"webpack": "5.x.x",
"webpack-cli": "5.x.x"
}
}