-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.41 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
{
"name": "voice-tools-directory",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build && npx pagefind --site dist --output-path dist/pagefind",
"check": "astro check",
"preview": "npm run build && wrangler dev",
"test": "tsx tests/run-tests.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"validate": "tsx scripts/validate-csvs.ts",
"fetch-logos": "tsx scripts/fetch-logos.ts",
"fetch-traffic": "tsx scripts/fetch-traffic-estimates.ts",
"fetch-github-metrics": "tsx scripts/fetch-github-metrics.ts",
"update-data": "tsx scripts/update-tool-data.ts",
"stale-report": "tsx scripts/generate-stale-report.ts",
"audit-tools": "tsx scripts/audit-tool-research.ts",
"verify-tools": "tsx scripts/verify-tools.ts",
"deploy": "npm run build && wrangler deploy",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@astrojs/cloudflare": "12",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/tailwind": "^5.1.0",
"astro": "^5.6.0",
"gray-matter": "^4.0.3",
"papaparse": "^5.4.1",
"zod": "^3.23.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@playwright/test": "^1.59.1",
"@types/papaparse": "^5.3.14",
"pagefind": "^1.5.2",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"wrangler": "^4.87.0"
}
}