-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.73 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
{
"name": "tiim.ch",
"version": "0.0.1",
"scripts": {
"mv-assets": "cp content/assets/* static/assets/",
"dev": "npm run mv-assets && vite dev",
"build": "npm run mv-assets && vite build",
"preview": "vite preview",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"lint:ci": "prettier --check --plugin-search-dir=. . \"!content/**/*.md\" && eslint --ignore-path .gitignore .",
"format": "prettier --write --plugin-search-dir=. .",
"prepare": "husky install"
},
"devDependencies": {
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.22.4",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"sass": "^1.54.4",
"svelte-preprocess": "^4.10.7",
"vite": "^4.4.7"
},
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@poppanator/sveltekit-svg": "^1.0.0",
"feed": "^4.2.2",
"fontawesome-svelte": "^2.0.1",
"fs-extra": "^10.1.0",
"hast-util-from-html": "^1.0.0",
"hast-util-to-html": "^8.0.3",
"js-yaml": "^4.1.0",
"mdast-util-to-hast": "^12.2.0",
"normalize.css": "^8.0.1",
"recursive-readdir": "^2.2.3",
"rehype-external-links": "^2.0.0",
"rehype-stringify": "^9.0.3",
"remark-extract-frontmatter": "^3.2.0",
"remark-frontmatter": "^4.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"slugify": "^1.6.5",
"svelte": "^3.49.0",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.0"
}
}