-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.55 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
{
"name": "openfin-web-starter",
"version": "19.2.0",
"description": "OpenFin Web Starter",
"scripts": {
"build": "node ./scripts/workspaces.mjs build",
"package-how-tos": "node ./scripts/package.js --legacy",
"package": "node ./scripts/package.js",
"package-for-github": "node ./scripts/package.js --location github",
"package-for-aws": "node ./scripts/package.js --location aws",
"start": "echo You must be in a folder for a specific how-to to use npm run start e.g. ./how-to/x",
"prettier": "node ./scripts/workspaces.mjs prettier",
"prettier-check": "node ./scripts/workspaces.mjs prettier-check",
"eslint": "node ./scripts/workspaces.mjs eslint",
"markdownlint": "node ./scripts/workspaces.mjs markdownlint",
"validate": "node ./scripts/workspaces.mjs validate",
"list-update-packages": "npx --yes npm-check-updates --deep > updatable-packages.txt",
"update-packages": "npx --yes npm-check-updates --upgrade --deep -x fkill*,node-emoji,@openfin/core,@openfin/cloud-interop,@openfin/core-web,eslint-plugin-import",
"remove-packages": "npx --yes rimraf --glob **/node_modules && npx rimraf --glob **/package-lock.json",
"common-update": "node ./scripts/common-update.mjs"
},
"workspaces": [
"how-to/*"
],
"packageExclude": [
"how-to/hints-and-tips",
"how-to/cloud-interop-basic"
],
"packageCustomFolder": "",
"contributors": [
],
"license": "SEE LICENSE IN LICENSE.MD",
"devDependencies": {
"fast-glob": "3.3.2",
"fs-extra": "11.2.0",
"replace-in-file": "7.1.0",
"yargs": "17.7.2"
},
"overrides": {}
}