-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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
{
"private": true,
"name": "hapi-react-api",
"version": "0.1.0",
"description": "Hapi.js single page application boilerplate.",
"repository": {
"type": "git",
"url": "git+https://github.com/wfalowski/hapi-react-api.git"
},
"workspaces": [
"client",
"server"
],
"scripts": {
"start": "(cd client && npm run build) && npm run server",
"client": "cd client && npm start",
"client:dev": "cd client && npm start",
"server": "node server/bootstrap.js",
"server:dev": "nodemon server/bootstrap.js",
"watch": "nodemon server/bootstrap.js"
},
"contributors": [
"Wojciech Fałowski <[email protected]>",
"Paweł Dziok <[email protected]>",
"Bartosz Kahl <[email protected]>"
],
"keywords": [
"hapi",
"node",
"react",
"redux",
"api",
"rest",
"restful"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wfalowski/hapi-react-api/issues"
},
"homepage": "https://github.com/wfalowski/hapi-react-api#readme"
}