2017-12-16 13:25:59 +01:00
|
|
|
|
2018-08-04 17:09:03 +02:00
|
|
|
const {loadYaml} = require('./utils');
|
|
|
|
|
|
|
|
const team = loadYaml("./data/team.yml");
|
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-07-31 21:15:45 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
caption: "Innovaccer",
|
|
|
|
image: "/img/users/innovaccer.png",
|
|
|
|
infoLink: "http://innovaccer.com/",
|
|
|
|
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-09-27 08:50:27 +02:00
|
|
|
tagline: 'A lightweight private npm proxy registry',
|
2018-08-01 22:54:37 +02:00
|
|
|
url: 'https://verdaccio.org' /* your website url */,
|
2018-01-06 23:04:02 +01:00
|
|
|
organizationName: 'verdaccio',
|
2018-08-01 22:54:37 +02:00
|
|
|
cname: 'verdaccio.org',
|
2018-01-20 23:36:23 +01:00
|
|
|
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'},
|
2018-04-30 14:38:56 +02:00
|
|
|
{ href: "https://medium.com/verdaccio", label: 'Blog'},
|
2018-08-04 17:09:03 +02:00
|
|
|
{ page: 'help', label: 'Help'},
|
|
|
|
{ href: "https://github.com/verdaccio", label: "GitHub" },
|
|
|
|
{ search: true },
|
|
|
|
{ page: 'team', label: 'Team'},
|
|
|
|
{ href: "https://opencollective.com/verdaccio", label: "Donate" },
|
2017-12-16 13:25:59 +01:00
|
|
|
],
|
|
|
|
users,
|
2018-08-04 17:09:03 +02:00
|
|
|
team,
|
2018-08-24 09:18:49 +02:00
|
|
|
headerIcon: 'img/logo/symbol/svg/verdaccio-tiny.svg',
|
|
|
|
footerIcon: 'img/logo/symbol/svg/verdaccio-blackwhite.svg',
|
|
|
|
favicon: 'img/favicon/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
|
|
|
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',
|
2018-08-01 22:39:17 +02:00
|
|
|
indexName: 'verdaccio'
|
2018-01-22 20:29:34 +01:00
|
|
|
},
|
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
|
|
|
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;
|