-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 2.47 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
47
48
49
{
"private": true,
"workspaces": [
"packages/*",
"cypress"
],
"engines": {
"node": "18.18.0"
},
"scripts": {
"formatter:check": "prettier -l '*.md' 'packages/**/*.js' 'packages/**/*.ts' 'packages/**/*.tsx' 'packages/*/package.json' 'cypress/**/*.js' 'cypress/**/*.ts' package.json",
"formatter": "prettier --write '*.md' 'packages/**/*.js' 'packages/**/*.ts' 'packages/**/*.tsx' 'packages/*/package.json' 'cypress/**/*.js' 'cypress/**/*.ts' package.json",
"dedubcheck": "dedubcheck",
"build:api": "npm run build --workspace=@frinx/api",
"dev:api": "npm run dev --workspace=@frinx/api",
"build:shared": "npm run build --workspace=@frinx/shared",
"dev:shared": "npm run dev --workspace=@frinx/shared",
"build:topology": "npm run build --workspace=@frinx/device-topology",
"dev:topology": "npm run dev --workspace=@frinx/device-topology",
"build:inventory": "npm run build --workspace=@frinx/inventory-client",
"dev:inventory": "npm run dev --workspace=@frinx/inventory-client",
"build:resource": "npm run build --workspace=@frinx/resource-manager",
"dev:resource": "npm run dev --workspace=@frinx/resource-manager",
"build:workflow": "npm run build --workspace=@frinx/workflow-ui",
"dev:workflow": "npm run dev --workspace=@frinx/workflow-ui",
"build:builder": "npm run build --workspace=@frinx/workflow-builder",
"dev:builder": "npm run dev --workspace=@frinx/workflow-builder",
"build:dashboard": "npm run build --workspace=@frinx/dashboard",
"dev:dashboard": "npm run dev --workspace=@frinx/dashboard",
"build:server": "npm run build --workspace=@frinx/frontend-server",
"build": "run-s build:shared build:api build:topology build:inventory build:resource build:workflow build:builder build:dashboard build:server",
"typegen": "lerna run typegen",
"dev:server": "npm run dev --workspace=@frinx/frontend-server",
"dev": "run-p dev:shared dev:api dev:topology dev:inventory dev:resource dev:workflow dev:builder dev:dashboard dev:server",
"lerna:shared": "lerna run typegen,type-check,lint --scope=@frinx/shared",
"lerna": "lerna run typegen,type-check,lint",
"pr": "NX_NO_CLOUD=true run-s version:check dedubcheck lerna:shared lerna",
"version:check": "node ./version-check.mjs",
"test": "lerna run test"
},
"devDependencies": {
"dedubcheck": "0.0.8",
"lerna": "^7.2.0",
"npm-run-all": "4.1.5",
"nx": "^16.8.1",
"nx-cloud": "^16.4.0",
"prettier": "^3.0.0"
}
}