-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 804 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "cv-content",
"private": true,
"version": "1.0.0",
"description": "My CV content built with JSONResume schema using resumed",
"scripts": {
"build": "node scripts/buildHtml.js && node scripts/optimizeForWebComponents.js && node scripts/minify.js && node scripts/buildPdf.js",
"format": "prettier ../../data/ --write",
"validate": "node scripts/validate.js",
"lint": "concurrently --pad-prefix --kill-others-on-fail -n prettier,eslint 'prettier . --check' 'eslint'",
"fix": "prettier . --write && eslint --fix"
},
"keywords": [],
"author": "Tobias Stadler",
"license": "MIT",
"devDependencies": {
"eslint-config-prettier": "10.1.8",
"html-minifier-terser": "7.2.0",
"minimist": "1.2.8",
"puppeteer": "24.43.1",
"resumed": "6.0.0"
}
}