-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.67 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "monolog",
"description": "Beyond (We)Blog: Log of Everything",
"author": "Yusuke Kido <[email protected]>",
"version": "3.5.0",
"license": "MIT",
"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 --check . && eslint .",
"format": "prettier --write .",
"prepare": "husky",
"validate": "node bin/validate.js"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.2",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@ts-morph/bootstrap": "^0.22.0",
"@types/eslint": "8.56.0",
"@types/marked": "^4.3.2",
"@types/node": "^20.11.21",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-svelte": "^2.35.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss-html": "^1.6.0",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.1",
"sass": "^1.71.1",
"stylelint": "^16.2.1",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-recess-order": "^4.6.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-prettier": "^5.0.0",
"svelte": "^4.2.12",
"svelte-check": "^3.6.5",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.1.4"
},
"type": "module",
"dependencies": {
"budoux": "^0.6.2",
"front-matter": "^4.0.2",
"highlight.js": "^11.9.0",
"marked": "^4.3.0",
"modern-css-reset": "^1.4.0",
"svelte-intersection-observer": "^1.0.0"
},
"lint-staged": {
"*.{ts,svelte}": [
"pnpm exec eslint"
],
"*.{scss,svelte}": [
"pnpm exec stylelint"
],
"*.{scss,md,json,html}": [
"pnpm exec prettier --check"
]
},
"stylelint": {
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-recess-order",
"stylelint-prettier/recommended",
"stylelint-config-prettier-scss"
],
"overrides": [
{
"files": [
"*.svelte"
],
"customSyntax": "postcss-html"
}
],
"rules": {
"no-descending-specificity": null,
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"global"
]
}
]
}
},
"packageManager": "[email protected]+sha1.648f6014eb363abb36618f2ba59282a9eeb3e879"
}