mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
5167bb528f
* UI search uses search endpoint for global search * improve sorting and error handling * give priority to private packages * order by private package * add tests, improve testing * add changeset * addjust settings * remove old index search implementation * update lock file * relocate fastify package * fix circular dependency * fix wrong import * fix tests
39 lines
554 B
YAML
39 lines
554 B
YAML
storage: ./storage
|
|
plugins: ./plugins
|
|
web:
|
|
title: Verdaccio
|
|
|
|
auth:
|
|
htpasswd:
|
|
file: ./htpasswd
|
|
uplinks:
|
|
npmjs:
|
|
url: https://registry.npmjs.org/
|
|
|
|
packages:
|
|
'@*/*':
|
|
access: $all
|
|
publish: $authenticated
|
|
unpublish: $authenticated
|
|
proxy: npmjs
|
|
|
|
'**':
|
|
access: $all
|
|
publish: $authenticated
|
|
unpublish: $authenticated
|
|
proxy: npmjs
|
|
|
|
server:
|
|
keepAliveTimeout: 60
|
|
|
|
middlewares:
|
|
audit:
|
|
enabled: true
|
|
|
|
log: { type: stdout, format: pretty, level: http }
|
|
flags:
|
|
token: false
|
|
search: false
|
|
|
|
i18n:
|
|
web: en-US
|