-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 820 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 820 Bytes
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
{
"name": "prgms-daangn",
"version": "1.0.0",
"engines": {
"node": "10.14.1"
},
"main": "index.js",
"private": true,
"scripts": {
"heroku-postbuild": "yarn workspace server build && yarn workspace client build",
"start": "yarn workspace server start",
"dev": "yarn workspace client watch & yarn workspace server start:dev",
"test": "yarn server:test",
"client:lint": "yarn workspace client lint",
"client:watch": "yarn workspace client watch",
"client:build": "yarn workspace client build",
"client:dev": "yarn workspace client dev",
"server:build": "yarn workspace server build",
"server:test": "yarn workspace server test",
"server:test:mocha": "yarn workspace server test:mocha"
},
"license": "MIT",
"workspaces": [
"server",
"client"
]
}