forked from svelteland/svelte-kit-blog-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 828 Bytes
/
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
{
"name": "svelte-kit-blog-demo",
"version": "0.0.1",
"scripts": {
"dev": "svelte-kit dev",
"build": "rm -rf build && svelte-kit build && touch .svelte-kit/static/build/.nojekyll",
"start": "svelte-kit start",
"deploy": "npm run build && npx gh-pages -d .svelte-kit/static/build -t true"
},
"devDependencies": {
"@sveltejs/adapter-node": "next",
"@sveltejs/adapter-static": "^1.0.0-next.0",
"@sveltejs/kit": "next",
"dayjs": "^1.10.4",
"js-yaml": "^3.14.1",
"rehype-highlight": "^4.1.0",
"rehype-stringify": "^8.0.0",
"remark-frontmatter": "^3.0.0",
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.0.0",
"sass": "^1.0.0",
"svelte": "^3.29.0",
"svelte-preprocess": "^4.0.0",
"to-vfile": "^6.1.0",
"unified": "^9.2.1",
"vite": "^2.1.0"
},
"type": "module"
}