-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.17 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.17 KB
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
{
"name": "astro-resume",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"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": "astro build",
"build:light": "FORCE_THEME=light astro build",
"build:dark": "FORCE_THEME=dark astro build",
"prepare": "husky",
"postinstall": "pnpx playwright install"
},
"devDependencies": {
"@astrojs/tailwind": "^5.1.4",
"@fontsource/open-sans": "^5.2.6",
"@netlify/plugin-lighthouse": "^6.0.1",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.13.8",
"husky": "^9.1.7",
"netlify-plugin-playwright-cache": "^0.0.1",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"start-server-and-test": "^2.0.11",
"@playwright/test": "^1.54.2",
"playwright": "^1.54.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"astro": "^5.7.10"
}
}