-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.24 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
33
34
35
36
37
{
"name": "sveltekit-smui-template",
"description": "SvelteKit + Svelte Material UI Template",
"license": "MIT",
"author": "Paul Pham <[email protected]>",
"homepage": "https://svetekit-smui-template.aquaron.com/",
"repository": {
"type": "git",
"url": "[email protected]:pham/sveltekit-smui-template.git"
},
"bugs": {
"url": "https://github.com/pham/sveltekit-smui-template/issues"
},
"version": "2.1.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0 --port 5002",
"build": "vite build",
"clean": "sed '0,/^#---/d' .gitignore | xargs -I % sh -c 'eval rm -r %'",
"preview": "vite preview --host 0.0.0.0 --port 5002",
"prepare": "npm run smui-theme-light && npm run smui-theme-dark",
"smui-theme-light": "smui-theme compile static/smui.css -i src/theme",
"smui-theme-dark": "smui-theme compile static/smui-dark.css -i src/theme/dark"
},
"devDependencies": {
"@material/theme": "^14.0.0",
"@material/typography": "^14.0.0",
"@smui/button": "^6.1.4",
"@smui/icon-button": "^6.1.4",
"@sveltejs/adapter-vercel": "^3.0.3",
"@sveltejs/app-utils": "next",
"@sveltejs/kit": "next",
"smui-theme": "^6.2.0",
"svelte": "^4.2.2",
"svelte-preprocess": "^5.0.4"
}
}