Skip to content

Commit

Permalink
feat: update deps and add verdaccio 5 test command
Browse files Browse the repository at this point in the history
  • Loading branch information
kuoruan committed Sep 23, 2024
1 parent 1fcef27 commit 2f16ed9
Show file tree
Hide file tree
Showing 3 changed files with 3,139 additions and 1,649 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*.log
dist/
node_modules/
/verdaccio
/verdaccio*
.npmrc
.yarnrc
.history
Expand Down
65 changes: 32 additions & 33 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,71 +29,70 @@
"scripts": {
"build": "rimraf dist && rollup -c --environment NODE_ENV:production",
"start": "cross-env DEBUG='verdaccio:*' verdaccio -c verdaccio/verdaccio.yml",
"preview": "verdaccio -c verdaccio/verdaccio.yml",
"start:5": "cross-env DEBUG='verdaccio:*' node_modules/verdaccio5/bin/verdaccio -c verdaccio5/verdaccio.yml",
"lint": "eslint --ext .js,.mjs,.ts .",
"lint:fix": "eslint --ext .js,.mjs,.ts --fix .",
"link:global": "pnpm link --global",
"unlink:global": "pnpm rm --global verdaccio-openid",
"link:local": "pnpm link .",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@gitbeaker/node": "^35.8.1",
"@isaacs/ttlcache": "^1.4.1",
"@verdaccio/auth": "6.0.0-6-next.55",
"@verdaccio/config": "6.0.0-6-next.76",
"@verdaccio/core": "6.0.0-6-next.76",
"@verdaccio/signature": "6.0.0-6-next.2",
"@verdaccio/url": "11.0.0-6-next.42",
"debug": "^4.3.4",
"@verdaccio/auth": "8.0.0-next-8.1",
"@verdaccio/config": "8.0.0-next-8.1",
"@verdaccio/core": "8.0.0-next-8.1",
"@verdaccio/signature": "8.0.0-next-8.0",
"@verdaccio/url": "13.0.0-next-8.1",
"debug": "^4.3.7",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express": "^4.21.0",
"global-agent": "^3.0.0",
"minimist": "^1.2.8",
"open": "^10.1.0",
"openid-client": "^5.6.5",
"openid-client": "^5.7.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@rollup/plugin-alias": "^5.1.0",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-node-resolve": "^15.2.4",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@types/express": "^4.17.21",
"@types/global-agent": "^2.1.3",
"@types/lodash": "^4.17.4",
"@types/lodash": "^4.17.7",
"@types/minimist": "^1.2.5",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@verdaccio/types": "^10.8.0",
"core-js": "^3.37.1",
"core-js": "^3.38.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^53.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-node-externals": "^7.1.2",
"typescript": "^5.4.5",
"verdaccio": "6.0.0-beta.2",
"verdaccio-htpasswd": "11.0.0-6-next.46"
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.22.4",
"rollup-plugin-node-externals": "^7.1.3",
"typescript": "^5.6.2",
"verdaccio": "^6.0.0",
"verdaccio-htpasswd": "13.0.0-next-8.1",
"verdaccio-openid": "file:.",
"verdaccio5": "npm:verdaccio@5.0.0"
},
"peerDependencies": {
"verdaccio": "^5.0.0||>=6.0.0-beta.0"
"verdaccio": "^5.0.0||^6.0.0"
},
"engines": {
"node": ">=16"
Expand Down
Loading

0 comments on commit 2f16ed9

Please sign in to comment.