-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 946 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 946 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
{
"packageManager": "pnpm@11.9.0",
"scripts": {
"dev": "astro dev",
"build": "pnpm build:docs && astro build",
"build:docs": "mkdocs build --config-file docs-site/mkdocs.yml",
"preview": "astro preview",
"check": "astro check",
"format:check": "prettier --check \"**/*.{astro,css,js,ts,json,md,yml}\"",
"lint:css": "stylelint \"src/**/*.css\"",
"test:e2e": "playwright test",
"validate": "pnpm format:check && pnpm lint:css && pnpm check && pnpm build && pnpm test:e2e"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"astro": "^4.16.18",
"photoswipe": "^5.4.4",
"typescript": "^5.6.3"
},
"devDependencies": {
"@astrojs/tailwind": "^6.0.2",
"@playwright/test": "^1.61.1",
"mermaid": "^11.16.0",
"prettier": "^3.9.4",
"prettier-plugin-astro": "^0.14.1",
"stylelint": "^17.14.0",
"stylelint-config-standard": "^40.0.0",
"tailwindcss": "^3.4.19"
}
}