-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 2.89 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
36
37
38
39
40
41
42
43
44
45
{
"name": "stock-portfolio",
"version": "2.0.1",
"description": "A financial sample that demonstrates the usage of Wijmo controls in OpenFin application",
"private": true,
"scripts": {
"start": "concurrently -k -s first \"npm:start-stock-ui\" \"npm:start-stock-portfolio\" \"npm:serve-stock-charts\" \"npm:serve-stock-trading\"",
"start-stock-ui": "cd packages/stock-ui && npm run start",
"start-stock-portfolio": "cd packages/stock-portfolio && npm run start",
"serve-stock-charts": "cd packages/stock-charts && npm run serve",
"serve-stock-trading": "cd packages/stock-trading && npm run serve",
"portable": "npm run build-portable && npm run test-portable",
"test-portable": "cd build && stock-portfolio-%npm_package_version%.exe",
"build-portable": "npm run build-package && node cli.js --build-portable",
"package": "npm run build-package && npm run test-package",
"test-package": "cd build/stock-portfolio-%npm_package_version% && run.cmd",
"build-package": "npm run build-apps && node cli.js --build-package",
"build-apps": "concurrently \"npm:build-stock-ui\" \"npm:build-stock-portfolio\" \"npm:build-stock-charts\" \"npm:build-stock-trading\"",
"build-stock-ui": "cd packages/stock-ui && npm run build",
"build-stock-portfolio": "cd packages/stock-portfolio && npm run build",
"build-stock-charts": "cd packages/stock-charts && npm run build",
"build-stock-trading": "cd packages/stock-trading && npm run build",
"postinstall": "npm run install-apps",
"install-apps": "concurrently \"npm:install-stock-ui\" \"npm:install-stock-portfolio\" \"npm:install-stock-charts\" \"npm:install-stock-trading\"",
"install-stock-ui": "cd packages/stock-ui && npm install",
"install-stock-portfolio": "cd packages/stock-portfolio && npm install",
"install-stock-charts": "cd packages/stock-charts && npm install",
"install-stock-trading": "cd packages/stock-trading && npm install",
"update-version": "npm --no-git-tag-version version patch && npm run update-version-apps && node cli.js --update-version",
"update-version-apps": "npm run update-version-stock-core && npm run update-version-stock-ui && npm run update-version-stock-portfolio && npm run update-version-stock-charts && npm run update-version-stock-trading",
"update-version-stock-core": "cd packages/stock-core && npm run update-version",
"update-version-stock-ui": "cd packages/stock-ui && npm run update-version",
"update-version-stock-portfolio": "cd packages/stock-portfolio && npm run update-version",
"update-version-stock-charts": "cd packages/stock-charts && npm run update-version",
"update-version-stock-trading": "cd packages/stock-trading && npm run update-version"
},
"devDependencies": {
"concurrently": "4.1.2",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"rimraf": "^3.0.0",
"app-builder-bin": "3.4.4",
"7zip-bin": "~5.0.3"
}
}