-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.29 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"type": "module",
"name": "luiz-gonzaga-filho-html-cv-resume",
"version": "0.0.1",
"description": "My resumé written in React",
"homepage": "http://luiz.dev",
"repository": {
"type": "git",
"url": "https://github.com/lfilho/cv"
},
"keywords": [
"resumé",
"cv",
"curriculum"
],
"author": "Luiz Gonzaga dos Santos Filho",
"license": "MIT",
"bugs": {
"url": "https://github.com/lfilho/cv/issues"
},
"scripts": {
"postinstall": "npx playwright install && node post-install.js",
"dev": "astro dev",
"lint": "prettier --write \"**/*.{js,mjs,cjs,jsx,ts,tsx,md,mdx,astro}\" && eslint --fix \"src/**/*.{js,mjs,cjs,ts,jsx,tsx,astro}\"",
"start": "astro dev",
"build": "astro build",
"postbuild": "node src/lib/pdf-generator.js",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/prism": "^3.2.0",
"@astrojs/react": "^4.1.3",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/ts-plugin": "^1.10.4",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@markdoc/markdoc": "^0.4.0",
"astro": "^5.1.5",
"astro-markdoc-renderer": "^0.0.1-alpha.1",
"express": "^4.21.2",
"globby": "^14.0.2",
"gray-matter": "^4.0.3",
"playwright": "^1.49.1",
"react": "^19.0.0",
"react-autolink": "^0.2.1",
"react-dom": "^19.0.0",
"slugify": "^1.6.6",
"zod": "^3.24.1"
},
"devDependencies": {
"@astrojs/tailwind": "^5.1.4",
"@types/node": "^20.11.5",
"@typescript-eslint/parser": "^6.19.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.56.0",
"eslint-plugin-astro": "^0.31.3",
"eslint-plugin-jsx-a11y": "^6.8.0",
"postcss": "^8.4.49",
"prettier": "^3.2.4",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-astro": "^0.13.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.3.3"
}
}