-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.18 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.18 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
{
"name": "uw-faculty-page",
"version": "1.1",
"engines": {
"node": "22"
},
"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/ ajko@ovid.u.washington.edu:~/public_html",
"sync": "rsync -vzripc --delete --exclude-from='deploy-excludes' build/ ajko@ovid.u.washington.edu:~/public_html",
"ship": "npm run build && npm run sync"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3",
"@sveltejs/kit": "^2",
"@sveltejs/vite-plugin-svelte": "^7",
"ajv-cli": "^5",
"ajv-formats": "^3",
"prettier": "^3",
"prettier-plugin-svelte": "^3",
"svelte": "^5",
"svelte-check": "^4",
"tslib": "^2",
"typescript": "^6",
"vite": "^8"
},
"type": "module"
}