feat: setup kissmyresume and theme

This commit is contained in:
Julian Tölle 2022-06-10 14:28:21 +02:00
parent 2a77ee7026
commit d00a74bb38
4 changed files with 7782 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
resume.json
node_modules
out/

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "jsonresume-theme-stackoverflow"]
path = jsonresume-theme-stackoverflow
url = https://github.com/phoinixi/jsonresume-theme-stackoverflow.git

7751
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

25
package.json Normal file
View file

@ -0,0 +1,25 @@
{
"name": "curriculum-vitae",
"version": "1.0.0",
"scripts": {
"build:json": "js-yaml resume.yaml > resume.json",
"build": "npm run build:json && PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium kissmyresume build -t stackoverflow resume.json",
"build:watch": "nodemon --exec 'npm run build'",
"validate": "npm run build:json && kissmyresume validate resume.json"
},
"author": "Julian Tölle <julian.toelle97@gmail.com>",
"license": "UNLICENSED",
"dependencies": {
"js-yaml": "^4.1.0",
"jsonresume-theme-stackoverflow": "apricote/jsonresume-theme-stackoverflow#afb0bc1",
"kiss-my-resume": "^0.8.2",
"nodemon": "^2.0.9"
},
"nodemonConfig": {
"ignore": [
"out/*",
"resume.json"
],
"ext": "yaml"
}
}