-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.64 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.64 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
{
"name": "here-node-starter",
"version": "1.0.0",
"description": "Here Node Starter",
"scripts": {
"build": "npm run build --workspaces",
"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/use-a-sidecar-app-basic",
"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 fkill*,@openfin/core,openfin-adapter,@openfin/node-adapter,eslint-plugin-import",
"remove-packages": "npx --yes rimraf --glob **/node_modules && npx rimraf ./package-lock.json"
},
"workspaces": [
"how-to/*"
],
"packageExclude": [],
"packageCustomFolder": "",
"contributors": [
"john.mandia@here.io"
],
"license": "SEE LICENSE IN LICENSE.MD",
"devDependencies": {
"eslint": "8.49.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "46.8.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unicorn": "48.0.1",
"eslint-plugin-unused-imports": "3.0.0",
"fast-glob": "3.3.1",
"fs-extra": "11.1.1",
"markdownlint-cli": "0.36.0",
"prettier": "3.0.3",
"replace-in-file": "7.0.1",
"yargs": "17.7.2"
}
}