forked from southwellmedia/velocity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.32 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.32 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
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
86
87
88
89
90
{
"name": "velocity",
"version": "1.0.0",
"description": "Southwell Astro Boilerplate - A production-ready starter template built on Astro 6 and Tailwind CSS v4",
"type": "module",
"author": "Southwell Media",
"license": "MIT",
"keywords": [
"astro",
"astro-theme",
"theme",
"tailwind",
"tailwindcss",
"typescript",
"blog",
"starter",
"boilerplate",
"seo"
],
"repository": {
"type": "git",
"url": "https://github.com/southwellmedia/velocity"
},
"homepage": "https://github.com/southwellmedia/velocity#readme",
"bugs": {
"url": "https://github.com/southwellmedia/velocity/issues"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate": "pnpm lint && pnpm check && pnpm build",
"test": "vitest",
"test:e2e": "playwright test"
},
"dependencies": {
"@astrojs/mdx": "5.0.0",
"@astrojs/react": "5.0.0",
"@astrojs/sitemap": "^3.7.1",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@fontsource-variable/manrope": "^5.2.8",
"@fontsource-variable/outfit": "^5.2.8",
"astro": "6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.563.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"satori": "^0.19.1",
"satori-html": "^0.3.2",
"schema-dts": "^1.1.2",
"sharp": "^0.34.5",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@astrojs/check": "0.9.7",
"@eslint/js": "^9.17.0",
"@pagefind/default-ui": "^1.3.0",
"@playwright/test": "^1.49.0",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.17.0",
"eslint-plugin-astro": "^1.3.0",
"globals": "^15.14.0",
"pagefind": "^1.3.0",
"prettier": "^3.4.0",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.18.0",
"vitest": "^3.2.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"engines": {
"node": ">=22.12.0"
}
}