-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (38 loc) · 1.46 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "intermedia-watcher",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:marce-ldv/intermedia-watcher.git",
"author": "Marcelo Ludovino <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/backend",
"packages/frontend"
]
},
"scripts": {
"install:packages": "yarn workspace backend install && yarn workspace frontend install",
"dev:backend": "yarn workspace backend dev:coins:backend",
"dev:frontend": "yarn workspace frontend dev",
"dev": "concurrently \"yarn dev:backend\" \"yarn dev:frontend\"",
"start:backend": "yarn workspace backend start:coins:backend",
"start:frontend": "yarn workspace frontend start",
"start": "concurrently \"yarn start:backend\" \"yarn start:frontend\"",
"build:backend": "yarn workspace backend build",
"build:frontend": "yarn workspace frontend build",
"build": "yarn build:backend && yarn build:frontend",
"test:backend": "yarn workspace backend test",
"test:frontend": "yarn workspace frontend test",
"test": "yarn test:backend && yarn test:frontend",
"lint:backend": "yarn workspace backend lint",
"lint:frontend": "yarn workspace frontend lint",
"lint": "yarn lint:backend && yarn lint:frontend",
"format:backend": "yarn workspace backend format",
"format:frontend": "yarn workspace frontend format"
},
"dependencies": {
"concurrently": "^8.0.1"
}
}