generated from EmaSuriano/astro-resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.13 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",
"@netlify/plugin-lighthouse": "^6.0.0",
"@playwright/test": "^1.41.2",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.11.19",
"netlify-plugin-playwright-cache": "^0.0.1",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"start-server-and-test": "^2.0.3",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@astrojs/check": "^0.5.4",
"@fontsource-variable/noto-sans-sc": "^5.0.4",
"astro": "^4.4.0"
}
}