-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.59 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.59 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
{
"name": "personalwebsite",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/dtpu/danielpu.dev.git"
},
"workspaces": [
"packages/**"
],
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/js": "^9.39.2",
"@sveltejs/adapter-vercel": "^6.2.0",
"@sveltejs/kit": "^2.49.2",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/vite": "^4.1.18",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.13.1",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.1",
"prettier-plugin-tailwindcss": "0.7.2",
"svelte": "^5.46.1",
"svelte-check": "^4.3.5",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "8.50.1",
"vite": "^6.4.1"
},
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"@vercel/analytics": "^1.6.1",
"@vercel/blob": "^2.0.0",
"pixel-profile": "workspace:*",
"pixel-profile-server": "workspace:*"
},
"private": true,
"scripts": {
"dev": "bun run --bun vite dev",
"build": "bun run build:packages && bun run --bun vite build",
"build:packages": "bun run --cwd packages/pixel-profile build && bun run --cwd packages/pixel-profile-server build",
"build:website": "vite build",
"preview": "vite preview",
"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": "eslint .",
"upload:blobs": "bun run scripts/storeBlobs.ts"
},
"type": "module"
}