-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
46 lines (46 loc) · 2.3 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
{
"name": "fluence-cli-monorepo",
"private": true,
"type": "module",
"license": "AGPL-3.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build --cache-dir=.turbo",
"install-yarn-dependencies": "turbo run install-yarn-dependencies --cache-dir=.turbo",
"install-npm-dependencies": "turbo run install-npm-dependencies --cache-dir=.turbo",
"gen-gql-schema": "turbo run gen-gql-schema --cache-dir=.turbo",
"gql-codegen": "turbo run gql-codegen --cache-dir=.turbo",
"pack-ci": "turbo run pack-ci --cache-dir=.turbo && node ./rename-packed.js",
"pack-linux-x64": "turbo run pack-linux-x64 --cache-dir=.turbo && node ./rename-packed.js",
"pack-darwin-x64": "turbo run pack-darwin-x64 --cache-dir=.turbo && node ./rename-packed.js",
"pack-darwin-arm64": "turbo run pack-darwin-arm64 --cache-dir=.turbo && node ./rename-packed.js",
"pack-win32-x64": "turbo run pack-win32-x64 --cache-dir=.turbo && node ./rename-packed.js",
"on-each-commit": "turbo run on-each-commit --cache-dir=.turbo",
"download-marine-and-mrepl": "yarn ./packages/cli/package download-marine-and-mrepl",
"generate-templates": "yarn ./packages/cli/package generate-templates",
"local-up": "yarn ./packages/cli/package local-up",
"vitest-provider": "yarn ./packages/cli/package vitest-provider",
"vitest-deal-deploy": "yarn ./packages/cli/package vitest-deal-deploy",
"vitest-deal-update": "yarn ./packages/cli/package vitest-deal-update",
"vitest-smoke": "yarn ./packages/cli/package vitest-smoke",
"vitest-js-to-aqua": "yarn ./packages/cli/package vitest-js-to-aqua",
"vitest": "yarn vitest-provider && yarn vitest-deal-deploy && yarn vitest-deal-update && yarn vitest-smoke && yarn vitest-js-to-aqua",
"test": "yarn download-marine-and-mrepl && yarn generate-templates && yarn local-up && yarn vitest",
"test-linux-x64": "yarn pack-linux-x64 && yarn test",
"test-darwin-x64": "yarn pack-darwin-x64 && yarn test",
"test-darwin-arm64": "yarn pack-darwin-arm64 && yarn test",
"test-win32-x64": "yarn pack-win32-x64 && yarn test",
"format": "prettier --write \"**/*.{ts,js,tsx}\""
},
"devDependencies": {
"prettier": "^3.3.3",
"turbo": "^2.1.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "22.10.0"
},
"prettier": {}
}