-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.46 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"prepare": "is-ci || husky",
"postinstall": "wrangler types",
"develop": "turbo do:develop",
"build": "turbo do:build",
"preview": "turbo do:preview",
"deploy": "turbo do:deploy",
"versions:upload": "turbo do:versions:upload",
"lint": "turbo do:lint",
"lint:fix": "turbo do:lint:fix",
"format": "oxfmt --write .",
"format:check": "oxfmt .",
"test": "turbo do:test",
"test:coverage": "turbo do:test:coverage",
"test:update": "vitest --update",
"test:watch:ui": "vitest --ui",
"test:watch": "vitest",
"check": "turbo do:check",
"cf-typegen": "wrangler types",
"test:e2e": "turbo do:test:e2e",
"test:e2e:ui": "turbo do:test:e2e:ui",
"test:e2e:headed": "turbo do:test:e2e:headed",
"do:develop": "astro dev",
"do:build": "astro build",
"do:preview": "node scripts/snapshot-preview-state.mjs && wrangler dev --config dist/server/wrangler.json --persist-to .wrangler/preview",
"do:deploy": "wrangler deploy --config dist/server/wrangler.json",
"do:versions:upload": "wrangler versions upload --config dist/server/wrangler.json",
"do:lint": "oxlint .",
"do:lint:fix": "oxlint . --fix",
"do:test": "vitest run",
"do:test:coverage": "vitest run --coverage",
"do:check": "astro check",
"do:test:e2e": "playwright test",
"do:test:e2e:ui": "playwright test --ui",
"do:test:e2e:headed": "playwright test --headed"
},
"dependencies": {
"@ascorbic/feed-loader": "^2.0.1",
"@astrojs/check": "0.9.10",
"@astrojs/cloudflare": "14.2.4",
"@astrojs/react": "6.0.4",
"@calcom/embed-react": "1.5.3",
"@emdash-cms/cloudflare": "^0.34.0",
"@headlessui/react": "2.2.10",
"@heroicons/react": "2.2.0",
"@sentry/astro": "10.72.0",
"@sentry/cloudflare": "10.72.0",
"@tailwindcss/vite": "4.3.3",
"astro": "7.2.6",
"clsx": "2.1.1",
"emdash": "^0.34.0",
"motion": "12.43.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"sharp": "0.35.3",
"shiki": "4.4.3",
"tailwind-merge": "3.6.0",
"tailwindcss-animate": "1.0.7"
},
"devDependencies": {
"@cloudflare/workers-types": "5.20260831.1",
"@playwright/test": "^1.62.1",
"@tailwindcss/forms": "0.5.11",
"@tailwindcss/typography": "0.5.20",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "7.0.1",
"@testing-library/react": "16.3.3",
"@types/node": "26.4.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"@vitejs/plugin-react": "6.1.1",
"@vitest/coverage-v8": "4.1.11",
"@vitest/ui": "4.1.11",
"happy-dom": "20.11.15",
"husky": "9.1.7",
"is-ci": "4.1.0",
"jest-axe": "11.0.0",
"jsdom": "30.0.1",
"lint-staged": "17.3.0",
"marked": "18.0.11",
"oxfmt": "^0.64.0",
"oxlint": "1.80.0",
"tailwindcss": "4.3.3",
"turbo": "2.10.12",
"typescript": "6.0.3",
"vite": "8.2.2",
"vitest": "4.1.11",
"wrangler": "4.127.1",
"yaml": "^2.9.0"
},
"lint-staged": {
"**/*.{mjs,cjs,js,jsx,tsx}": [
"oxlint --fix",
"oxfmt --write"
],
"**/!(*.d).ts": [
"oxlint --fix",
"oxfmt --write"
],
"**/*.d.ts": [
"oxfmt --write --no-error-on-unmatched-pattern"
],
"**/*.astro": [
"oxlint --fix"
],
"**/*.{json,md}": [
"oxfmt --write --no-error-on-unmatched-pattern"
]
},
"packageManager": "pnpm@12.1.0"
}