Add fs alias for faststart, dependency upgrade.

This commit is contained in:
Daniel Scalzi
2022-01-21 16:00:43 -05:00
parent 640f3f0507
commit 2e977e1e2d
2 changed files with 300 additions and 416 deletions

693
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -8,6 +8,7 @@
"tsc": "tsc", "tsc": "tsc",
"build": "npm run clean && npm run tsc", "build": "npm run clean && npm run tsc",
"start": "npm run build && node dist/index.js", "start": "npm run build && node dist/index.js",
"fs": "node dist/index.js",
"faststart": "node dist/index.js", "faststart": "node dist/index.js",
"lint": "eslint . --ext .js,.ts" "lint": "eslint . --ext .js,.ts"
}, },
@@ -28,29 +29,29 @@
"homepage": "https://github.com/dscalzi/Nebula#readme", "homepage": "https://github.com/dscalzi/Nebula#readme",
"devDependencies": { "devDependencies": {
"@types/fs-extra": "^9.0.13", "@types/fs-extra": "^9.0.13",
"@types/luxon": "^2.0.7", "@types/luxon": "^2.0.9",
"@types/minimatch": "^3.0.5", "@types/minimatch": "^3.0.5",
"@types/node": "^16.11.12", "@types/node": "^16.11.21",
"@types/triple-beam": "^1.3.2", "@types/triple-beam": "^1.3.2",
"@types/yargs": "^17.0.7", "@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.6.0", "@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.6.0", "@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.4.1", "eslint": "^8.7.0",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"typescript": "^4.5.3" "typescript": "^4.5.5"
}, },
"dependencies": { "dependencies": {
"dotenv": "^10.0.0", "dotenv": "^14.2.0",
"fs-extra": "^10.0.0", "fs-extra": "^10.0.0",
"got": "^11.8.3", "got": "^11.8.3",
"helios-distribution-types": "^1.0.0-rc.2", "helios-distribution-types": "^1.0.0-rc.2",
"luxon": "^2.2.0", "luxon": "^2.3.0",
"minimatch": "^3.0.4", "minimatch": "^3.0.4",
"node-stream-zip": "^1.15.0", "node-stream-zip": "^1.15.0",
"toml": "^3.0.0", "toml": "^3.0.0",
"triple-beam": "^1.3.0", "triple-beam": "^1.3.0",
"ts-json-schema-generator": "^0.97.0", "ts-json-schema-generator": "^0.97.0",
"winston": "^3.3.3", "winston": "^3.4.0",
"yargs": "^17.3.0" "yargs": "^17.3.1"
} }
} }