-
Notifications
You must be signed in to change notification settings - Fork 233
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.03 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.03 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
{
"name": "www",
"version": "0.0.1",
"devDependencies": {
"@ai-sdk/anthropic": "^2.0.57",
"@epic-web/cachified": "^5.6.0",
"@orama/orama": "^3.1.18",
"@playwright/test": "^1.57.0",
"@sveltejs/adapter-node": "^5.5.4",
"@sveltejs/enhanced-img": "^0.10.3",
"@sveltejs/kit": "^2.53.4",
"@sveltejs/vite-plugin-svelte": "6.2.4",
"@sveltejs/vite-plugin-svelte-inspector": "^5.0.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@thisux/sveltednd": "^0.0.20",
"@types/bun": "^1.3.6",
"ai": "^5.0.117",
"autoprefixer": "^10.4.23",
"better-svelte-email": "^1.3.2",
"dotenv": "^17.2.3",
"magnitude-test": "^0.3.12",
"marked": "^16.4.2",
"phosphor-svelte": "^3.0.1",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"runed": "^0.37.1",
"satori": "^0.18.3",
"svead": "^0.0.15",
"svelte": "^5.53.7",
"svelte-adapter-bun": "^1.0.1",
"svelte-check": "^4.4.4",
"svelte-sonner": "^1.0.7",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.1.18",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"zod": "^4.3.5"
},
"private": true,
"dependencies": {
"carta-md": "^4.11.1",
"isomorphic-dompurify": "^2.35.0",
"marked-shiki": "^1.2.1",
"sharp": "^0.34.5",
"shiki": "^3.20.0",
"stripe": "^20.1.0",
"zod-search-params": "^0.2.1"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start": "node --env-file=.env build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "bun --run prettier --write .",
"db:migrate": "bun run src/lib/server/db/scripts/migrate.ts",
"db:backup": "bun run scripts/backup-db.ts",
"db:restore": "bun run scripts/restore-db.ts",
"db:restore:latest": "bun run scripts/restore-latest-from-s3.ts",
"s3:migrate": "bun run scripts/migrate-thumbnails-to-s3.ts",
"s3:migrate:dry-run": "bun run scripts/migrate-thumbnails-to-s3.ts --dry-run",
"db:test:init": "NODE_ENV=test bun run scripts/test-db-init.ts",
"db:test:seed": "NODE_ENV=test bun run scripts/test-db-seed.ts",
"test:integration": "rm -f test-*.db* && NODE_ENV=test bun run db:test:init && bun run db:test:seed && playwright test",
"test": "bun test src/ tests/unit/",
"test:watch": "bun test src/ tests/unit/ --watch",
"test:coverage": "bun test src/ tests/unit/ --coverage",
"test:coverage:lcov": "bun test src/ tests/unit/ --coverage --coverage-reporter=lcov",
"test:ci": "bun test src/ tests/unit/ --coverage --coverage-reporter=lcov",
"agent:test": "./scripts/agent-run.sh test:unit",
"agent:e2e": "./scripts/agent-run.sh test:e2e",
"agent:check": "./scripts/agent-run.sh check",
"agent:lint": "./scripts/agent-run.sh lint",
"agent:build": "./scripts/agent-run.sh build",
"agent:all": "./scripts/agent-run.sh all",
"agent:json": "./scripts/agent-run.sh all --json"
},
"type": "module"
}