-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
36 lines (36 loc) · 1.12 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
{
"name": "astro-resume",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "npx playwright install",
"dev": "astro dev",
"start": "astro dev",
"generate-pdf": "node ./scripts/generate-pdf.js",
"generate-pdf:ci": "PDF_VIEW=true start-server-and-test http://localhost:4321 generate-pdf",
"prebuild": "astro check && tsc --noEmit",
"build": "yarn generate-pdf:ci && astro build",
"build:light": "FORCE_THEME=light astro build",
"build:dark": "FORCE_THEME=dark astro build"
},
"devDependencies": {
"@astrojs/tailwind": "^5.1.0",
"@fontsource/poppins": "^5.0.15",
"@netlify/plugin-lighthouse": "^5.0.0",
"@playwright/test": "^1.46.1",
"@tailwindcss/typography": "^0.5.13",
"@types/node": "^20.14.9",
"netlify-plugin-playwright-cache": "^0.0.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-tailwindcss": "^0.6.9",
"start-server-and-test": "^2.0.4",
"tailwindcss": "^3.4.14",
"typescript": "^5.7.2"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"astro": "^3.6.4"
}
}