-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.88 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.88 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
{
"name": "seanbehan-ca",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "npm run build && wrangler pages dev",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"deploy": "npm run build && wrangler pages deploy",
"cf-typegen": "wrangler types && mv worker-configuration.d.ts src/"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260525.1",
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@fontsource-variable/inter": "^5.2.8",
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/adapter-cloudflare": "^7.2.8",
"@sveltejs/enhanced-img": "^0.10.4",
"@sveltejs/kit": "^2.61.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"carbon-components": "^10.59.2",
"carbon-components-svelte": "^0.107.1",
"carbon-icons-svelte": "^13.11.0",
"cookie": "^1.1.1",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.1",
"fuse.js": "^7.3.0",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"mdsvex": "^0.12.7",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^4.0.1",
"prettier-plugin-tailwindcss": "^0.8.0",
"svelte": "^5.55.9",
"svelte-check": "^4.4.8",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vite": "^8.0.14",
"vitest": "^4.1.7",
"wrangler": "^4.94.0"
}
}