Skip to content

Commit

Permalink
fix: update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
rsaz committed Sep 17, 2023
1 parent 747e463 commit 0769477
Showing 1 changed file with 142 additions and 139 deletions.
281 changes: 142 additions & 139 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,141 +1,144 @@
{
"name": "@expressots/cli",
"version": "1.3.3",
"description": "Expressots CLI - modern, fast, lightweight nodejs web framework (@cli)",
"author": "Richard Zampieri",
"license": "MIT",
"bugs": {
"url": "https://github.com/expressots/expressots-cli/issues"
},
"bin": {
"expressots": "bin/cli.js"
},
"engines": {
"node": ">=18.10.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/expressots"
},
"repository": {
"type": "git",
"url": "https://github.com/expressots/expressots-cli"
},
"homepage": "https://expresso-ts.com",
"publishConfig": {
"access": "public"
},
"keywords": [
"ExpressoTS",
"CLI",
"Scaffolding"
],
"scripts": {
"start:build": "npm run build && npm run start",
"start": "node ./bin/cli.js",
"start:dev": "tsnd ./src/cli.ts",
"build": "npm run clean && tsc -p tsconfig.json && yarn cp:templates && chmod +x ./bin/cli.js",
"cp:templates": "cp -r ./src/generate/templates ./bin/generate/templates",
"clean": "rimraf ./bin",
"lint": "eslint .eslintrc.js --ext .ts,.tsx,.js,.jsx .",
"release": "release-it",
"prepare": "husky install"
},
"dependencies": {
"@expressots/boost-ts": "^1.1.1",
"chalk-animation": "^1",
"cli-progress": "^3.11.2",
"degit": "^2.8.4",
"glob": "^10.2.6",
"inquirer": "^8.0.0",
"mustache": "^4.2.0",
"ts-node": "^10.9.1",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/chalk-animation": "^1.6.1",
"@types/cli-progress": "^3.11.0",
"@types/degit": "^2.8.3",
"@types/inquirer": "^9.0.3",
"@types/mustache": "^4.2.2",
"@types/node": "^18.11.19",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"chalk": "^4.1.2",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"release-it": "^15.6.0",
"rimraf": "^4.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styles"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "build",
"section": "Build System"
},
{
"type": "ci",
"section": "Continuous Integrations"
},
{
"type": "chore",
"hidden": true
}
]
}
}
}
}
"name": "@expressots/cli",
"version": "1.3.3",
"description": "Expressots CLI - modern, fast, lightweight nodejs web framework (@cli)",
"author": "Richard Zampieri",
"license": "MIT",
"bugs": {
"url": "https://github.com/expressots/expressots-cli/issues"
},
"bin": {
"expressots": "bin/cli.js"
},
"engines": {
"node": ">=18.10.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/expressots"
},
"repository": {
"type": "git",
"url": "https://github.com/expressots/expressots-cli"
},
"homepage": "https://expresso-ts.com",
"publishConfig": {
"access": "public"
},
"keywords": [
"ExpressoTS",
"CLI",
"Scaffolding"
],
"scripts": {
"start:build": "npm run build && npm run start",
"start": "node ./bin/cli.js",
"start:dev": "tsnd ./src/cli.ts",
"build": "npm run clean && tsc -p tsconfig.json && yarn cp:templates && chmod +x ./bin/cli.js",
"cp:templates": "cp -r ./src/generate/templates ./bin/generate/templates",
"clean": "rimraf ./bin",
"lint": "eslint .eslintrc.js --ext .ts,.tsx,.js,.jsx .",
"release": "release-it",
"prepare": "husky install"
},
"dependencies": {
"@expressots/boost-ts": "^1.1.1",
"chalk-animation": "^1",
"cli-progress": "^3.11.2",
"degit": "^2.8.4",
"glob": "^10.2.6",
"inquirer": "^8.0.0",
"mustache": "^4.2.0",
"ts-node": "^10.9.1",
"yargs": "^17.6.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@release-it/conventional-changelog": "^7.0.1",
"@types/chalk-animation": "^1.6.1",
"@types/cli-progress": "^3.11.0",
"@types/degit": "^2.8.3",
"@types/inquirer": "^9.0.3",
"@types/mustache": "^4.2.2",
"@types/node": "^18.11.19",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"chalk": "^4.1.2",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"release-it": "^16.1.5",
"rimraf": "^4.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styles"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "build",
"section": "Build System"
},
{
"type": "ci",
"section": "Continuous Integrations"
},
{
"type": "chore",
"hidden": true
}
]
}
}
}
}
}

0 comments on commit 0769477

Please sign in to comment.