-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 902 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
{
"name": "fullstack-node-boilerplate",
"version": "0.0.9",
"description": "Fullstack Node Boilerplate",
"main": "index.js",
"scripts": {
"setup": "(cd frontend && yarn && cp -n config.js.example config.js); (cd server && yarn);",
"start": "concurrently --names \"SERVER,UI\" -c \"bgGreen.bold,bgMagenta.bold\" -k \"(cd server && yarn start)\" \"(cd frontend && yarn start)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hpe-dev-incubator/fullstack-node-boilerplate.git"
},
"keywords": [
"fullstack",
"node",
"react",
"express"
],
"author": "Alex Mejias",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hpe-dev-incubator/fullstack-node-boilerplate/issues"
},
"homepage": "https://github.com/hpe-dev-incubator/fullstack-node-boilerplate#readme",
"dependencies": {
"concurrently": "^4.1.0"
}
}