-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.6 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.6 KB
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 . && eslint .",
"lint:ci": "prettier --check . \"!content/**/*.md\" && eslint .",
"format": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-svelte": "^2.0.0",
"globals": "^15.0.0",
"husky": "^9.0.0",
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^3.0.0",
"sass": "^1.93.0",
"svelte": "^5.0.0",
"vite": "^6.0.0"
},
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.0.0",
"@fortawesome/free-brands-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@poppanator/sveltekit-svg": "^4.0.0",
"feed": "^5.0.0",
"fontawesome-svelte": "^3.0.0",
"fs-extra": "^11.0.0",
"hast-util-from-html": "^2.0.0",
"hast-util-to-html": "^9.0.0",
"js-yaml": "^4.1.0",
"mdast-util-to-hast": "^13.0.0",
"normalize.css": "^8.0.1",
"recursive-readdir": "^2.2.3",
"rehype-external-links": "^3.0.0",
"rehype-stringify": "^10.0.0",
"remark-extract-frontmatter": "^3.2.0",
"remark-frontmatter": "^5.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"slugify": "^1.6.6",
"unified": "^11.0.0",
"unist-util-visit": "^5.0.0"
}
}