2017-12-16 13:25:59 +01:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* List of projects/orgs using your project for the users page */
|
2018-01-23 02:22:55 +01:00
|
|
|
const users = [
|
|
|
|
{
|
|
|
|
caption: "Filiosoft",
|
2018-06-17 01:23:19 +02:00
|
|
|
image: "/img/users/filiosoft.png",
|
2018-01-23 02:22:55 +01:00
|
|
|
infoLink: "https://filiosoft.com/",
|
|
|
|
fbOpenSource: false,
|
|
|
|
pinned: false,
|
2018-06-02 17:49:43 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
caption: "SheetJS",
|
2018-06-17 01:23:19 +02:00
|
|
|
image: "/img/users/sheetjs.png",
|
2018-06-02 17:49:43 +02:00
|
|
|
infoLink: "https://sheetjs.com/",
|
|
|
|
fbOpenSource: false,
|
|
|
|
pinned: true,
|
2018-06-17 01:23:19 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
caption: "Mozilla Neutrino",
|
|
|
|
image: "/img/users/neutrino.png",
|
|
|
|
infoLink: "https://neutrinojs.org/",
|
|
|
|
fbOpenSource: false,
|
|
|
|
pinned: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
caption: "pnpm",
|
|
|
|
image: "/img/users/pnpm.svg",
|
|
|
|
infoLink: "https://pnpm.js.org/",
|
|
|
|
fbOpenSource: false,
|
|
|
|
pinned: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
caption: "nodesource",
|
|
|
|
image: "/img/users/nodesource.jpg",
|
|
|
|
infoLink: "https://nodesource.com/",
|
|
|
|
fbOpenSource: false,
|
|
|
|
pinned: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
caption: "Strapi",
|
|
|
|
image: "/img/users/strapijs.jpg",
|
|
|
|
infoLink: "https://strapi.io/",
|
|
|
|
fbOpenSource: false,
|
|
|
|
pinned: true,
|
2018-01-23 02:22:55 +01:00
|
|
|
}
|
|
|
|
];
|
2017-12-16 13:25:59 +01:00
|
|
|
|
|
|
|
const siteConfig = {
|
|
|
|
title: 'Verdaccio' /* title for your website */,
|
2018-06-16 07:10:16 +02:00
|
|
|
tagline: 'Verdaccio · A lightweight private npm proxy registry',
|
2017-12-16 13:25:59 +01:00
|
|
|
url: 'http://www.verdaccio.org' /* your website url */,
|
2018-01-06 23:04:02 +01:00
|
|
|
organizationName: 'verdaccio',
|
2018-01-20 23:36:23 +01:00
|
|
|
cname: 'www.verdaccio.org',
|
|
|
|
noIndex: false,
|
2018-01-20 23:00:45 +01:00
|
|
|
baseUrl: '/' /* base url for your project */,
|
2017-12-16 13:25:59 +01:00
|
|
|
projectName: 'verdaccio',
|
|
|
|
headerLinks: [
|
2018-06-17 01:23:19 +02:00
|
|
|
{ doc: 'installation', label: 'Docs'},
|
|
|
|
{ page: 'help', label: 'Help'},
|
2018-04-30 14:38:56 +02:00
|
|
|
{ href: "https://medium.com/verdaccio", label: 'Blog'},
|
|
|
|
{ href: "https://github.com/verdaccio", label: "GitHub" }
|
2017-12-16 13:25:59 +01:00
|
|
|
],
|
|
|
|
users,
|
|
|
|
headerIcon: 'img/verdaccio-tiny.png',
|
|
|
|
footerIcon: 'img/verdaccio-blackwhite.png',
|
2018-01-20 23:00:45 +01:00
|
|
|
favicon: 'img/favicon.ico',
|
2017-12-16 13:25:59 +01:00
|
|
|
colors: {
|
|
|
|
primaryColor: '#4B5E40',
|
|
|
|
secondaryColor: '#205C3B',
|
|
|
|
},
|
2018-06-17 01:23:19 +02:00
|
|
|
translationRecruitingLink: 'https://crowdin.com/project/verdaccio',
|
2017-12-16 13:25:59 +01:00
|
|
|
// This copyright info is used in /core/Footer.js and blog rss/atom feeds.
|
|
|
|
copyright:
|
2018-06-17 01:23:19 +02:00
|
|
|
'Copyright © ' + new Date().getFullYear() + ' Verdaccio community',
|
2017-12-16 13:25:59 +01:00
|
|
|
// organizationName: 'deltice', // or set an env variable ORGANIZATION_NAME
|
|
|
|
// projectName: 'test-site', // or set an env variable PROJECT_NAME
|
2018-06-17 01:23:19 +02:00
|
|
|
usePrism: ['jsx'],
|
2017-12-16 13:25:59 +01:00
|
|
|
highlight: {
|
2018-06-17 01:23:19 +02:00
|
|
|
theme: 'atom-one-dark',
|
2017-12-16 13:25:59 +01:00
|
|
|
},
|
2018-01-22 20:29:34 +01:00
|
|
|
algolia: {
|
|
|
|
apiKey: 'a8b4d117e513cd8d71d6a95e3d9d4a91',
|
|
|
|
indexName: 'verdaccio',
|
|
|
|
},
|
2018-01-10 08:34:18 +01:00
|
|
|
gaTrackingId: 'UA-2527438-21',
|
|
|
|
twitter: true,
|
2018-06-17 01:23:19 +02:00
|
|
|
scripts: [
|
|
|
|
'https://buttons.github.io/buttons.js',
|
|
|
|
'https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js',
|
|
|
|
'/js/code-blocks-buttons.js',
|
|
|
|
],
|
|
|
|
stylesheets: [
|
|
|
|
'/css/code-blocks-buttons.css',
|
|
|
|
],
|
2017-12-16 13:25:59 +01:00
|
|
|
// You may provide arbitrary config keys to be used as needed by your template.
|
|
|
|
repoUrl: 'https://github.com/verdaccio/verdaccio',
|
2018-06-17 01:23:19 +02:00
|
|
|
cleanUrl: true,
|
|
|
|
scrollToTop: true,
|
|
|
|
scrollToTopOptions: {
|
|
|
|
zIndex: 100,
|
|
|
|
},
|
2017-12-16 13:25:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = siteConfig;
|