-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 KB
/
package.json
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
{
"name": "resume-app",
"version": "1.0.0",
"description": "Convert markdown resume file in a specific format to html and pdf, using a template and given style",
"author": "Basilio Bogado",
"license": "MIT",
"homepage": "https://github.com/basiliskus/resume-app",
"repository": {
"type": "git",
"url": "https://github.com/basiliskus/resume-app.git"
},
"bugs": {
"url": "https://github.com/basiliskus/resume-app/issues"
},
"scripts": {
"dev": "next dev",
"build": "run-s next-build create-pdfs",
"start": "next start",
"lint": "next lint",
"next-build": "next build",
"build-export": "next build && next export",
"create-pdfs": "node scripts/create-pdf.mjs"
},
"dependencies": {
"@babel/runtime": "^7.23.9",
"@babel/runtime-corejs2": "^7.23.9",
"gray-matter": "^4.0.3",
"next": "^14.1.1",
"puppeteer": "^9.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark": "^13.0.0",
"unist-util-select": "^4.0.0",
"unist-util-visit-parents": "^4.0.0"
},
"devDependencies": {
"next-transpile-modules": "^10.0.1",
"npm-run-all": "^4.1.5",
"sass": "^1.32.12",
"styled-jsx": "^5.1.2",
"styled-jsx-plugin-dart-sass": "^1.0.1"
}
}