chore: init project

This commit is contained in:
rizaldy 2023-02-19 20:45:57 +07:00
commit adeb26c50d
No known key found for this signature in database
GPG Key ID: 510753C31098D86C
5 changed files with 1522 additions and 0 deletions

1
.envrc Normal file
View File

@ -0,0 +1 @@
use_nix

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
.direnv
node_modules
dist

14
package.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "rizaldy.today",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "eleventy --serve",
"build": "eleventy",
"test": "echo \"it works\""
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0"
}
}

1493
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

10
shell.nix Normal file
View File

@ -0,0 +1,10 @@
with import <nixpkgs> {};
pkgs.mkShell {
name = "rizaldy.today";
buildInputs = [
nodejs
nodePackages.pnpm
];
}