-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 968 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 968 Bytes
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
{
"name": "raxcel-lp",
"version": "0.0.1",
"devDependencies": {
"@sveltejs/adapter-auto": "^6.1.0",
"@sveltejs/adapter-cloudflare": "^7.2.4",
"@sveltejs/kit": "^2.43.2",
"@sveltejs/vite-plugin-svelte": "^6.2.0",
"@tailwindcss/vite": "^4.1.17",
"daisyui": "^5.5.5",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.1",
"svelte": "^5.39.5",
"svelte-check": "^4.3.2",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.2",
"vite": "^7.1.7",
"wrangler": "^4.47.0"
},
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "bun 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",
"deploy": "bun run build && wrangler pages deploy",
"cf-typegen": "wrangler types src/worker-configuration.d.ts"
},
"type": "module"
}