-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "my-cv",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"astro:build": "astro check && astro build",
"build": "run-s font:build astro:build",
"preview": "astro preview",
"astro": "astro",
"pages:dev": "wrangler pages dev --compatibility-date=2023-12-18 -- astro dev",
"pages:deploy": "astro build && wrangler pages deploy ./dist",
"font:build": "node scripts/build-font.mjs",
"font:test": "node scripts/test-font.mjs"
},
"dependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/cloudflare": "^10.0.2",
"@astrojs/react": "^3.1.1",
"@astrojs/tailwind": "^5.1.0",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.23",
"astro": "^4.5.14",
"autoprefixer": "^10.4.19",
"cssnano": "^6.1.2",
"date-fns": "^3.6.0",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"pngjs": "^7.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use": "^17.5.0",
"reactstrap": "^9.2.2",
"sass": "^1.72.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.3"
},
"devDependencies": {
"@fontsource-variable/inter": "^5.0.17",
"@tailwindcss/typography": "^0.5.12",
"clsx": "^2.1.0",
"npm-run-all": "^4.1.5",
"postcss-dark-theme-class": "^1.2.1",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"wrangler": "^3.44.0"
}
}