forked from salto-io/salto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.33 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
{
"name": "salto-io",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"workspaces": [
"packages/*"
],
"resolutions": {
"typescript": "4.8.4"
},
"devDependencies": {
"jsonc-parser": "^2.2.1",
"lerna": "^5.6.2",
"turbo": "^2.0.6"
},
"scripts": {
"preinstall": "./build_utils/find_conflicting_versions.js",
"verify": "./build_utils/verify_tsconfig_references.js",
"pre-build": "yarn verify && yarn generate",
"build": "yarn pre-build && yarn build-ts && yarn lint",
"generate": "yarn workspaces foreach -vpAi -j 4 run generate",
"lint": "./build_utils/turbo_run.sh lint",
"lint-fix": "yarn workspaces foreach -vpAi -j 4 run lint-fix",
"check-format": "yarn workspaces foreach -vpAi -j 4 run check-format",
"format": "yarn workspaces foreach -vpAi -j 4 run format",
"build-ts": "./build_utils/turbo_run.sh build-ts",
"build-all": "yarn workspaces foreach -vpAi -j 4 run build",
"clean": "./build_utils/turbo_run.sh clean",
"test": "./build_utils/turbo_run.sh test",
"generate-notices-file": "./build_utils/generate_notices.sh",
"lerna-version": "lerna version --no-git-tag-version --exact",
"lerna-version-pr": "./build_utils/create_version_pr.sh",
"lerna-publish": "lerna publish from-package"
},
"version": "0.0.0",
"packageManager": "[email protected]"
}