-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.71 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
45
46
47
48
49
50
{
"private": true,
"name": "firebase-monorepo",
"description": "Web firebase basic setup workspace project (yarn) use NestJs and VueJs",
"author": "Asapdotid",
"contributors": [
"Asapdotid <[email protected]>"
],
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"keywords": [
"node",
"firebase",
"nestjs",
"express",
"vuejs"
],
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/firebase-monorepo-core"
]
},
"scripts": {
"workspace:build:core": "yarn workspace firebase-monorepo-core build",
"workspace:pack:core": "yarn workspace firebase-monorepo-core pack",
"workspace:build:backend": "yarn workspace firebase-monorepo-backend build",
"workspace:build:frontend": "yarn workspace firebase-monorepo-frontend build",
"workspace:start:core": "yarn workspace firebase-monorepo-core start",
"workspace:start:backend": "yarn workspace firebase-monorepo-backend start:dev",
"workspace:start:frontend": "yarn workspace firebase-monorepo-frontend serve",
"build:core": "yarn workspace:build:core",
"pack:core": "yarn workspace:pack:core",
"build:backend": "run-s workspace:build:core workspace:build:backend",
"build:frontend": "run-s workspace:build:core workspace:build:frontend",
"start:core": "yarn workspace:build:core",
"start:backend": "run-s workspace:build:core workspace:start:backend",
"start:frontend": "run-s workspace:build:core workspace:start:frontend",
"deploy:backend": "firebase deploy --only functions",
"deploy:frontend": "firebase deploy --only hosting"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^3.9.5"
}
}