-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "solivan-dev",
"type": "module",
"version": "3.0.0",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "pnpm biome format --write .",
"lint": "pnpm biome lint --fix .",
"prepare": "husky",
"test:unit": "vitest",
"test:coverage": "vitest run --coverage",
"test": "pnpm run test:unit -- --run && pnpm run test:e2e",
"test:e2e": "playwright test",
"blog": "python scripts/new_blog.py",
"syndicate": "node scripts/syndicate.mjs"
},
"dependencies": {
"@astrojs/mdx": "^4.3.6",
"@astrojs/rss": "^4.0.12",
"@astrojs/sitemap": "^3.6.0",
"@atproto/api": "^0.16.11",
"@tailwindcss/vite": "^4.1.14",
"astro": "^5.14.1",
"astro-expressive-code": "^0.41.3",
"masto": "^7.2.0",
"tailwindcss": "^4.1.14"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@playwright/test": "^1.55.1",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^24.6.2",
"dotenv": "^17.2.3",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"jsdom": "^27.0.0",
"lint-staged": "^16.2.3",
"tailwindcss-animate": "^1.0.7",
"vitest": "^3.2.4",
"vitest-dom": "^0.1.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,json,md,astro}": [
"pnpm format",
"pnpm lint"
]
}
}