-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 2.17 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "openfin-container-starter",
"version": "38.83.79",
"description": "OpenFin Container Starter",
"scripts": {
"build": "npm run build --workspaces",
"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",
"prettier": "prettier --config .prettierrc --write .",
"eslint": "node --max-old-space-size=5120 ./node_modules/eslint/bin/eslint . --ext .js,.mjs,.ts",
"start": "echo You must be in a folder for a specific how-to to use npm run start e.g. ./how-to/create-window",
"markdownlint": "markdownlint **/*.md --ignore **/node_modules/**",
"validate": "npm run prettier & npm run eslint & npm run markdownlint",
"list-update-packages": "npx --yes npm-check-updates --deep > updatable-packages.txt",
"update-packages": "npx --yes npm-check-updates --upgrade --deep -x @openfin/core,openfin-adapter,eslint-plugin-import",
"remove-packages": "npx --yes rimraf --glob **/node_modules && npx rimraf ./package-lock.json",
"common-update": "node ./scripts/common-update.mjs"
},
"workspaces": [
"how-to/**"
],
"packageExclude": [
"how-to/use-licensed-codecs"
],
"packageCustomFolder": "",
"contributors": [
],
"license": "SEE LICENSE IN LICENSE.MD",
"devDependencies": {
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "48.2.3",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-simple-import-sort": "12.1.0",
"eslint-plugin-unicorn": "52.0.0",
"eslint-plugin-unused-imports": "3.2.0",
"fast-glob": "3.3.2",
"fs-extra": "11.2.0",
"markdownlint-cli": "0.40.0",
"prettier": "3.2.5",
"replace-in-file": "7.1.0",
"yargs": "17.7.2",
"@openfin/core": "38.83.79",
"@openfin/node-adapter": "38.83.79"
},
"overrides": {
"parse-bmfont-xml": {
"xml2js": "0.5.0"
}
}
}