-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 983 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 983 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
34
35
{
"name": "dzipobel",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"generate:content": "node ./scripts/generate-content.mjs",
"typecheck": "astro check",
"lint": "eslint .",
"test": "vitest run",
"test:e2e": "playwright test -c ./playwright.config.ts",
"check:asset-size": "node ./scripts/check-asset-size.mjs",
"verify": "npm run test && npm run lint && npm run typecheck && npm run build && npm run check:asset-size && npm run test:e2e"
},
"dependencies": {
"astro": "^6.0.5"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@playwright/test": "^1.58.2",
"@types/node": "^24.12.0",
"adm-zip": "^0.5.16",
"eslint": "^9.35.0",
"eslint-plugin-astro": "^0.34.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^3.2.4"
}
}