-
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) · 3.24 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.24 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": "astrical",
"version": "1.0.0",
"description": "Astrical",
"type": "module",
"engines": {
"node": ">= 22.0.0"
},
"workspaces": [
"modules/*"
],
"scripts": {
"astro": "astro",
"check:astro": "astro check",
"check:eslint": "eslint .",
"check:prettier": "prettier --check \"src/**/*.{astro,css,js,json,md,mdx,ts,tsx}\" \"plugins/**/*.{ts,js,md}\" astro.config.ts package.json",
"check": "npm run check:astro && npm run check:eslint && npm run check:prettier",
"fix:eslint": "eslint --max-warnings 0 --fix .",
"fix:prettier": "prettier -w \"src/**/*.{astro,css,js,json,md,mdx,ts,tsx}\" \"plugins/**/*.{ts,js,md}\" astro.config.ts package.json",
"fix": "npm run fix:eslint && npm run fix:prettier",
"init-content": "test -d content || cp -R content-default content",
"init-public": "test -d public || cp -R public-default public",
"init-themes": "test -d src/themes || cp -R src/themes-default src/themes",
"init": "npm run init-content && npm run init-public && npm run init-themes",
"build": "npm run init && npm run validate && npm run check && astro build",
"deploy": "npm run build",
"dev": "astro dev",
"preview": "astro preview",
"generate-spec": "tsx scripts/generate-spec.ts",
"validate-content": "tsx scripts/validate-content.ts",
"validate-themes": "tsx scripts/validate-themes.ts",
"validate": "npm run generate-spec && npm run validate-content && npm run validate-themes",
"analyze": "tsx scripts/parse-website.ts",
"test:watch": "vitest",
"test:unit": "vitest run test/unit --coverage",
"test:integration": "vitest run test/integration",
"test:e2e": "playwright test",
"test": "npm run test:unit && npm run test:integration && npm run test:e2e"
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.10",
"@fontsource-variable/inter": "^5.2.8",
"@nanostores/react": "^1.0.0",
"astro": "^5.15.3",
"astro-embed": "^0.9.1",
"astro-icon": "^1.1.5",
"js-yaml": "^4.1.0",
"nanostores": "^1.1.0",
"nodemailer": "^7.0.11",
"puppeteer": "^24.32.0",
"tailwind-merge": "^3.3.1",
"unpic": "^4.1.3",
"worker-mailer": "^1.2.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.5",
"@astrojs/mdx": "^4.3.9",
"@astrojs/partytown": "^2.1.4",
"@astrojs/sitemap": "^3.6.0",
"@astrolib/analytics": "^0.6.1",
"@astrolib/seo": "^1.0.0-beta.8",
"@eslint/js": "^9.39.0",
"@iconify-json/tabler": "^1.2.23",
"@playwright/test": "^1.57.0",
"@tailwindcss/vite": "^4.1.16",
"@types/js-yaml": "^4.0.9",
"@types/lodash.merge": "^4.6.9",
"@types/mdx": "^2.0.13",
"@types/nodemailer": "^7.0.4",
"@vitest/coverage-v8": "^4.0.15",
"astro-compress": "2.3.8",
"astro-eslint-parser": "^1.2.2",
"eslint": "^9.39.0",
"eslint-plugin-astro": "^1.4.0",
"glob": "^11.0.3",
"jsdom": "^27.3.0",
"lodash.merge": "^4.6.2",
"mdast-util-to-string": "^4.0.0",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-toml": "^2.0.6",
"reading-time": "^1.5.0",
"tailwindcss": "^4.1.16",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"unist-util-visit": "^5.0.0",
"vitest": "^4.0.15"
}
}