-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
32 lines (32 loc) · 1.19 KB
/
package.json
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": "uw-faculty-page",
"version": "1.1",
"description": "The webpage for University of Washington Professor Amy J. Ko.",
"license": "MIT License",
"repository": "https://github.com/amyjko/faculty.git",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json build --watch",
"dry": "rsync --dry-run -vzripc --delete --exclude-from='deploy-excludes' build/ [email protected]:~/public_html",
"sync": "rsync -vzripc --delete --exclude-from='deploy-excludes' build/ [email protected]:~/public_html",
"ship": "npm run build && npm run sync"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0",
"@sveltejs/kit": "^2.7",
"@sveltejs/vite-plugin-svelte": "^4.0",
"ajv-cli": "^5",
"ajv-formats": "^3",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^5.0",
"svelte-check": "^4.0",
"svelte-preprocess": "^6.0",
"tslib": "^2.6",
"typescript": "^5.6",
"vite": "^5.4"
},
"type": "module"
}