Skip to content

Commit

Permalink
fix(deps): simplified semver dependency declaration (experimental)
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgroshkov committed Jan 5, 2025
1 parent b19ddb6 commit 01fcdee
Show file tree
Hide file tree
Showing 3 changed files with 139 additions and 144 deletions.
70 changes: 35 additions & 35 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,43 +17,43 @@
"upnc": "tsn ./src/bin/upnc.ts"
},
"dependencies": {
"@biomejs/biome": "^1.8.3",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/js": "^9.7.0",
"@inquirer/prompts": "^7.0.0",
"@naturalcycles/cli": "^1.0.0",
"@naturalcycles/js-lib": "^14.0.0",
"@naturalcycles/nodejs-lib": "^13.0.1",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/jest": "^29.0.0",
"@types/node": "^22.0.0",
"@types/yargs": "^16.0.0",
"eslint": "^9.15.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-jest": "^28.0.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vue": "^9.0.0",
"expect-type": "^1.0.0",
"globals": "^15.8.0",
"husky": "^9.0.2",
"jest-junit": "^16.0.0",
"lint-staged": "^15.0.1",
"micromatch": "^4.0.5",
"mitm": "^1.7.0",
"prettier": "^3.0.0",
"timekeeper": "^2.2.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.2",
"typescript-eslint": "^8.0.0",
"yargs": "^17.0.0"
"@biomejs/biome": "^1",
"@commitlint/cli": "^19",
"@commitlint/config-conventional": "^19",
"@eslint/js": "^9",
"@inquirer/prompts": "^7",
"@naturalcycles/cli": "^1",
"@naturalcycles/js-lib": "^14",
"@naturalcycles/nodejs-lib": "^13",
"@stylistic/eslint-plugin": "^2",
"@types/jest": "^29",
"@types/node": "^22",
"@types/yargs": "^16",
"eslint": "^9",
"eslint-plugin-import-x": "^4",
"eslint-plugin-jest": "^28",
"eslint-plugin-jsdoc": "^50",
"eslint-plugin-simple-import-sort": "^12",
"eslint-plugin-unicorn": "^56",
"eslint-plugin-vue": "^9",
"expect-type": "^1",
"globals": "^15",
"husky": "^9",
"jest-junit": "^16",
"lint-staged": "^15",
"micromatch": "^4",
"mitm": "^1",
"prettier": "^3",
"timekeeper": "^2",
"ts-jest": "^29",
"typescript": "^5",
"typescript-eslint": "^8",
"yargs": "^17"
},
"devDependencies": {
"jest": "^29.0.0",
"stylelint": "^16.0.2",
"stylelint-config-standard-scss": "^14.0.0"
"jest": "^29",
"stylelint": "^16",
"stylelint-config-standard-scss": "^14"
},
"files": [
"dist",
Expand Down
4 changes: 2 additions & 2 deletions src/test/cfg/eslint.config.dump.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"0": ".vue",
"1": ".html"
},
"parser": "typescript-eslint/parser@8.18.2",
"parser": "typescript-eslint/parser@8.19.0",
"project": "tsconfig.json"
},
"sourceType": "module"
Expand All @@ -18,7 +18,7 @@
},
"plugins": [
"@",
"@typescript-eslint:@typescript-eslint/eslint-plugin@8.18.2",
"@typescript-eslint:@typescript-eslint/eslint-plugin@8.19.0",
"unicorn:eslint-plugin-unicorn@56.0.1",
"vue:eslint-plugin-vue@9.32.0",
"import-x",
Expand Down
Loading

0 comments on commit 01fcdee

Please sign in to comment.