-
-
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) · 747 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 747 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": "netlify-fullstack",
"version": "0.0.1",
"description": "",
"main": "index.js",
"private": "true",
"workspaces": [
"api",
"web"
],
"scripts": {
"client": "yarn workspace web start",
"server": "yarn workspace api start",
"start": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"build:server": "yarn workspace api build",
"build:client": "yarn workspace web build",
"build": "concurrently --kill-others-on-fail \"yarn build:server\" \"yarn build:client\"",
"test:server": "yarn workspace api test"
},
"author": "Truong An",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"concurrently": "^5.3.0",
"npm-check-updates": "^9.1.2"
}
}