-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 974 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "workcortex",
"version": "0.1.0",
"private": true,
"description": "WorkCortex(智核)monorepo —— platform 脊柱 · abilities 能力 · packages 共享库",
"workspaces": [
"packages/*",
"abilities/*",
"platform/service-gateway"
],
"scripts": {
"build:sdk": "npm run build -w @workcortex/datafinder-sdk",
"build:query": "npm run build -w @workcortex/analytics-query",
"build:atomic": "npm run build -w atomic-abilities",
"build:ability": "npm run build:tools -w data-analysis-tools",
"build:gateway": "npm run build -w service-gateway",
"build": "npm run build:sdk && npm run build:query && npm run build:atomic && npm run build:ability && npm run build:gateway",
"test:ability": "npm run test:tools -w data-analysis-tools",
"test:gateway": "npm run test -w service-gateway",
"test": "npm run test:ability && npm run test:gateway",
"start:gateway": "npm run start -w service-gateway"
}
}