forked from WebPraktikos/universal-resume
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 905 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "rekkice-resume",
"version": "3.1.1",
"description": "Full-stack developer resume",
"homepage": "https://github.com/Rekkice/resume",
"repository": {
"type": "git",
"url": "https://github.com/Rekkice/resume.git"
},
"license": "NonCommercial-ShareAlike 1.0 Generic",
"scripts": {
"serve": "concurrently \"tailwindcss -i ./tailwind.css -o docs/build.css --watch\" \"live-server ./docs\"",
"build": "npx @tailwindcss/cli -i ./tailwind.css -o ./docs/build.css --minify",
"generate:pdf": "node generatePDF.mjs",
"start:browserless": "docker run -p 3000:3000 -v ./docs:/usr/src/app/static/resume ghcr.io/browserless/chromium"
},
"dependencies": {
"concurrently": "^5.1.0",
"cross-env": "^7.0.0",
"live-server": "^1.2.1",
"puppeteer": "^23.5.1"
},
"devDependencies": {
"@tailwindcss/cli": "^4.1.17",
"tailwindcss": "^4.1.17"
}
}