-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.53 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "reepolee-app",
"description": "Application starter for Svelte Apps",
"keywords": [
"svelte",
"routify",
"vite",
"tailwind",
"jit",
"rollup"
],
"license": "MIT",
"author": "Ales Vaupotic <[email protected]> (https://twitter.com/alesvaupotic)",
"version": "0.5.0",
"scripts": {
"dev": "run-p dev:routify dev:vite",
"build": "routify -b && vite build",
"static": "routify -b && vite build && spank",
"serve": "vite preview",
"dev:routify": "routify",
"dev:vite": "vite"
},
"devDependencies": {
"@roxi/routify": "^2.15.1",
"@sveltejs/vite-plugin-svelte": "next",
"@tailwindcss/aspect-ratio": "^0.2.0",
"autoprefixer": "^10.2.5",
"cssnano": "^5.0.0",
"mdsvex": "^0.9.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.10",
"rehype-autolink-headings": "^5.0.1",
"rehype-slug": "^4.0.1",
"remark-abbr": "^1.4.1",
"remark-github": "^10.0.1",
"remark-slug": "^6.0.0",
"routify-plugin-frontmatter": "^1.0.1",
"spank": "git+https://github.com/reepolee/spank.git",
"svelte": "^3.37.0",
"svelte-preprocess": "^4.7.0",
"tailwindcss": "^2.1.1",
"tossr": "^1.4.2",
"vite": "^2.1.5"
},
"routify": {
"extensions": [
"md",
"svelte",
"svx"
],
"plugins": {
"routify-plugin-frontmatter": {}
}
},
"appConfig": {
"port": 5000,
"assetsDir": "static",
"template": "dist/__app.html",
"distDir": "dist",
"buildDir": "dist/build"
},
"ava": {
"verbose": true
}
}