-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
32 lines (32 loc) · 1.18 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.0.5",
"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 --ignore 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",
"@sveltejs/kit": "^2",
"@sveltejs/vite-plugin-svelte": "^3",
"ajv-cli": "^5",
"ajv-formats": "^2",
"prettier": "^2",
"prettier-plugin-svelte": "^2",
"svelte": "^4",
"svelte-check": "^3",
"svelte-preprocess": "^5",
"tslib": "^2",
"typescript": "^5",
"vite": "^5"
},
"type": "module"
}