-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 2.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@zaduma/astro-starter",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "astro dev",
"vercel:dev": "vercel dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"serve": "astro preview",
"astro": "astro",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"format": "prettier --write src",
"ci": "pnpm lint && prettier --check src",
"test": "vitest run --no-file-parallelism",
"test:debug": "vitest run --inspect --no-file-parallelism",
"test:update-snapshots": "vitest run --no-file-parallelism --update"
},
"dependencies": {
"@astrojs/markdown-remark": "^5.1.0",
"@astrojs/mdx": "^3.0.1",
"@astrojs/solid-js": "^4.2.0",
"@astrojs/tailwind": "^5.1.0",
"@fontsource-variable/brygada-1918": "^5.0.19",
"@fontsource-variable/inter": "^5.0.18",
"@mdx-js/mdx": "3.0.1",
"@types/react": "^18.3.3",
"@types/unist": "^3.0.2",
"@vercel/og": "^0.6.2",
"astro": "^4.9.2",
"astro-eslint-parser": "^1.0.2",
"eslint-plugin-markdown": "^5.0.0",
"estree-util-value-to-estree": "^3.1.1",
"plaiceholder": "^3.0.0",
"postcss": "8.4.38",
"reading-time": "^1.5.0",
"remark-shiki-twoslash": "^3.1.3",
"remark-supersub": "^1.0.0",
"sharp": "0.32.6",
"solid-js": "^1.8.17",
"tailwindcss": "^3.4.3",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"vercel": "^39.3.0",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@astrojs/rss": "^4.0.6",
"@edgeandnode/eslint-config": "^2.0.3",
"@types/hast": "3.0.4",
"@types/jest-image-snapshot": "^6.4.0",
"@types/node": "20.13.0",
"autoprefixer": "^10.4.19",
"cssnano": "^7.0.1",
"eslint": "^8.57.0",
"jest-image-snapshot": "^6.4.0",
"pptr-testing-library": "^0.8.0",
"prettier": "^3.3.0",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-tailwindcss": "^0.6.1",
"puppeteer": "^22.10.0",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vitest": "^1.6.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/core",
"rollup"
]
}
}
}