-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 823 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 823 Bytes
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
{
"name": "extra-steps-dev",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "oxlint",
"typecheck": "astro check && tsc --noEmit",
"validate": "bun run scripts/validate-content.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"clean": "rm -rf dist .astro"
},
"dependencies": {
"@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.6.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@axe-core/playwright": "^4.11.1",
"@playwright/test": "^1.58.2",
"astro": "^5.1.6",
"gray-matter": "^4.0.3",
"oxlint": "^1.36.0",
"typescript": "~5.8.3",
"vitest": "^4.0.18"
}
}