-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.43 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "cv",
"version": "0.1.0",
"private": true,
"dependencies": {
"html2canvas": "^1.4.1",
"jspdf": "^3.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.5",
"typescript": "^5.4.5"
},
"scripts": {
"start": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"postbuild": "node scripts/prerender.js",
"predeploy": "pnpm run build && OG_OUT=build/og.png node scripts/screenshot-og.js",
"deploy": "gh-pages -d build",
"generate-pdf": "pnpm run build && node scripts/generate-pdf.js",
"generate-pdf-local": "node scripts/generate-pdf-local.js",
"record-preview": "pnpm run build && node scripts/record-preview.js",
"screenshot-og": "node scripts/screenshot-og.js",
"serve-build": "node scripts/serve-build.js",
"check-pdf": "scripts/check-cv-pdf"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"esbuild": "^0.28.2",
"gh-pages": "^6.1.1",
"pdf-lib": "^1.17.1",
"puppeteer": "^24.16.1"
},
"homepage": "https://mrtysn.github.io/cv",
"pnpm": {
"ignoredBuiltDependencies": [
"core-js",
"core-js-pure",
"esbuild"
]
}
}