forked from udacity/reactnd-project-readable-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 814 Bytes
/
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
{
"name": "ocotocatblogtemplate",
"version": "0.2.0",
"description": "",
"authors": [
{
"name": "Alberto Ivo Vieira",
"email": "[email protected]",
"url": "albertoivo.github.io"
}
],
"repository": {
"type": "git",
"url": "https://github.com/albertoivo/readable-reactnd.git"
},
"license": "SEE LICENSE IN LICENSE FILE",
"keywords": [
"udacity",
"redux",
"react",
"node",
"create-react-app",
"nanodegree"
],
"devDependencies": {
"concurrently": "^4.1.0"
},
"scripts": {
"install": "concurrently --kill-others-on-fail \"cd frontend && npm install\" \"cd api-server && npm install\"",
"start": "concurrently --kill-others-on-fail \"cd frontend && npm run start\" \"node api-server/server\""
},
"dependencies": {}
}