-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.35 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.35 KB
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
{
"scripts": {
"build": "turbo run build",
"build:dev": "env PL_PKG_DEV=local turbo run build",
"type-check": "turbo run type-check",
"linter:check": "turbo run linter:check",
"formatter:check": "turbo run formatter:check",
"check": "turbo run type-check linter:check formatter:check",
"test": "env PL_PKG_DEV=local turbo run test --concurrency 1 --env-mode=loose",
"test:dry-run": "env PL_PKG_DEV=local turbo run test --dry-run=json",
"mark-stable": "turbo run mark-stable",
"do-pack": "turbo run do-pack",
"watch": "turbo watch build",
"changeset": "changeset",
"version-packages": "changeset version",
"update-sdk": "block-tools update-deps"
},
"devDependencies": {
"@changesets/cli": "catalog:",
"@platforma-sdk/block-tools": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"shx": "catalog:"
},
"packageManager": "pnpm@9.12.0",
"//pnpm": {
"overrides": {
"@milaboratories/uikit": "file:../platforma/lib/ui/uikit/package.tgz",
"@platforma-sdk/ui-vue": "file:../platforma/sdk/ui-vue/package.tgz",
"@platforma-sdk/model": "file:../platforma/sdk/model/package.tgz",
"@platforma-sdk/workflow-tengo": "file:../platforma/sdk/workflow-tengo/package.tgz",
"@milaboratories/pl-model-common": "file::../platforma/lib/model/common/package.tgz"
}
}
}