-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.55 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 --topological-dev run build",
"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 run test",
"check": "yarn workspaces foreach -v -W -p run check",
"generate:index": "yarn workspaces foreach -v -W -p run generate:index",
"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",
"setup": "yarn workspace @beabee/backend run setup",
"typeorm": "yarn workspace @beabee/backend run typeorm",
"presetup": "yarn workspaces foreach -v -W -p -i run presetup && yarn presetup:env",
"presetup:env": "cp -n .env.example .env 2>/dev/null || true"
},
"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"
},
"resolutions": {
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.17.33"
},
"packageManager": "[email protected]"
}