-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 908 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": "nodejs-apollo",
"version": "1.0.0",
"description": "",
"scripts": {
"install:backend": "cd backend && npm install",
"install:frontend": "cd frontend && npm install",
"install:all": "concurrently \"npm:install:backend\" \"npm:install:frontend\"",
"start-services": "cd backend && docker-compose up",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"dev": "concurrently \"npm:start-services\" \"npm:dev:backend\" \"npm:dev:frontend\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jaskerv/nodejs-apollo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jaskerv/nodejs-apollo/issues"
},
"homepage": "https://github.com/Jaskerv/nodejs-apollo#readme",
"dependencies": {},
"devDependencies": {
"concurrently": "^5.3.0"
}
}