2022-02-10 15:47:44 +01:00
|
|
|
import node from './node';
|
|
|
|
import staticApp from './static';
|
|
|
|
import docker from './docker';
|
|
|
|
import gatsby from './gatsby';
|
2021-05-14 21:51:14 +02:00
|
|
|
import svelte from './svelte';
|
|
|
|
import react from './react';
|
2021-05-16 21:54:44 +02:00
|
|
|
import nestjs from './nestjs';
|
2022-02-10 15:47:44 +01:00
|
|
|
import nextjs from './nextjs';
|
|
|
|
import nuxtjs from './nuxtjs';
|
|
|
|
import vuejs from './vuejs';
|
|
|
|
import php from './php';
|
|
|
|
import rust from './rust';
|
2022-02-23 22:07:06 +01:00
|
|
|
import astro from './static';
|
2022-02-24 00:30:33 +01:00
|
|
|
import eleventy from './static';
|
2022-04-02 16:22:51 +02:00
|
|
|
import python from './python';
|
2022-04-19 22:08:42 +02:00
|
|
|
import deno from './deno';
|
2021-05-14 21:51:14 +02:00
|
|
|
|
|
|
|
export {
|
2022-02-10 15:47:44 +01:00
|
|
|
node,
|
|
|
|
staticApp as static,
|
|
|
|
docker,
|
|
|
|
gatsby,
|
2021-05-14 21:51:14 +02:00
|
|
|
svelte,
|
|
|
|
react,
|
2021-05-16 21:54:44 +02:00
|
|
|
nestjs,
|
2022-02-10 15:47:44 +01:00
|
|
|
nextjs,
|
|
|
|
nuxtjs,
|
|
|
|
vuejs,
|
|
|
|
php,
|
2022-02-23 22:07:06 +01:00
|
|
|
rust,
|
2022-02-24 00:30:33 +01:00
|
|
|
astro,
|
2022-04-02 16:22:51 +02:00
|
|
|
eleventy,
|
2022-04-19 22:08:42 +02:00
|
|
|
python,
|
|
|
|
deno
|
2021-05-14 21:51:14 +02:00
|
|
|
};
|