-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 837 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": "docker-fullstack",
"version": "1.0.0",
"description": "> docker 를 활용한 React 및 Express 컨테이너 발행",
"main": "index.js",
"private": true,
"workspaces": [
"./packages/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd ./packages/client && npm run start",
"server": "cd ./packages/server && npm run server",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbjang123456/docker-fullstack.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sbjang123456/docker-fullstack/issues"
},
"homepage": "https://github.com/sbjang123456/docker-fullstack#readme",
"devDependencies": {
"concurrently": "^6.2.0"
}
}