-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.2 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "portfolio",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"code:sync": "snipsync",
"code:sync:clear": "snipsync --clear"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.5.0",
"@tailwindcss/typography": "^0.5.15",
"@types/react": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@xstate/react": "^3.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"fenceparser": "^2.0.0",
"hastscript": "^7.0.2",
"husky": "^4.3.8",
"lint-staged": "^11.1.2",
"mdsvex": "^0.10.6",
"outdent": "^0.8.0",
"postcss": "^8.4.23",
"postcss-load-config": "^4.0.1",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"react": "^18.0.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "^1.0.0",
"rehype-slug": "^5.0.0",
"shiki-twoslash": "^3.0.2",
"snipsync": "^1.8.0",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"svelte-preprocess": "^5.0.3",
"tailwindcss": "^3.4.14",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.3.0",
"xstate": "^4.33.6"
},
"dependencies": {
"@steeze-ui/heroicons": "^1.1.1",
"@steeze-ui/svelte-icon": "^1.3.1",
"cheerio": "^1.0.0-rc.12",
"clsx": "^2.1.1",
"feed": "^4.2.2",
"rss-parser": "^3.13.0",
"slugify": "^1.6.4",
"zod": "^3.23.8"
},
"type": "module",
"overrides": {
"shiki": "^0.10.1",
"@typescript/vfs": "^1.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,svelte,ts}": [
"prettier --write",
"eslint --fix"
],
"*.html": "prettier --write"
},
"volta": {
"node": "16.18.0"
}
}