-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.18 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
{
"name": "resume",
"type": "module",
"version": "0.3.6",
"scripts": {
"dev": "astro dev --host",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"build_and_preview": "astro build && astro preview",
"astro": "astro",
"generate-pdf": "ts-node-esm --project tsconfig-pdf.json ./scripts/generate-pdf.ts",
"generate-pdf:ci": "start-server-and-test build_and_preview http://localhost:4321 generate-pdf",
"changelog-latest": "conventional-changelog --config ./changelog-config.mjs -r 1",
"changelog": "conventional-changelog --config ./changelog-config.mjs -i CHANGELOG.md -s",
"version": "conventional-changelog --config ./changelog-config.mjs -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"dependencies": {
"@astrojs/mdx": "^3.0.0",
"@astrojs/tailwind": "^5.1.0",
"@fontsource/poppins": "^5.0.8",
"astro": "^4.3.0",
"tailwindcss": "^3.4.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"conventional-changelog-cli": "^5.0.0",
"gray-matter": "^4.0.3",
"pdf-lib": "^1.17.1",
"playwright": "^1.40.1",
"start-server-and-test": "^2.0.3",
"ts-node": "^10.9.2"
}
}