forked from beabee-communityrm/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 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
{
"name": "beabee",
"private": true,
"type": "module",
"scripts": {
"build": "yarn workspaces foreach -v -W -t run build",
"build:backend": "yarn workspace @beabee/backend run build",
"build:frontend": "yarn workspace @beabee/frontend run build",
"build:common": "yarn workspace @beabee/beabee-common run build",
"start:backend": "yarn workspace @beabee/backend run start",
"start:api": "yarn workspace @beabee/backend run start:api",
"start:webhooks": "yarn workspace @beabee/backend run start:webhooks",
"dev": "yarn workspaces foreach -v -W -p -i run dev",
"format": "yarn workspaces foreach -v -W -p run format",
"test": "yarn workspaces foreach -v -W -p run test",
"check": "yarn workspaces foreach -v -W -p run check",
"upgrade": "yarn set version latest && yarn install && yarn upgrade-interactive",
"docker:build": "yarn workspaces foreach -v -W run docker:build",
"docker:start": "yarn workspaces foreach -v -W -p run docker:start",
"publish:next": "yarn workspaces foreach -v -W --no-private npm publish --tolerate-republish --tag next --access public",
"publish:latest": "yarn workspaces foreach -v -W --no-private npm publish --tolerate-republish --tag latest --access public"
},
"workspaces": [
"packages/*",
"apps/*"
],
"_moduleAliases": {
"@core": "./apps/backend/built/core",
"@api": "./apps/backend/built/api",
"@apps": "./apps/backend/built/apps",
"@config": "./apps/backend/built/config/config.js",
"@locale": "./apps/backend/built/locales/current.js",
"@models": "./apps/backend/built/models",
"@type": "./apps/backend/built/type",
"@enums": "./apps/backend/built/enums"
},
"packageManager": "yarn@4.2.2"
}