-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1019 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1019 Bytes
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
{
"name": "collinmurch",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"lint": "oxlint --max-warnings=0",
"lint:fix": "oxlint --fix --max-warnings=0",
"format": "prettier --check .",
"format:write": "prettier --write .",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.46.5",
"@tailwindcss/vite": "^4.1.16",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"oxlint": "^1.26.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"shiki": "^3.13.0",
"svelte": "^5.40.0",
"tailwindcss": "^4.1.16",
"vite": "^5.4.11"
},
"dependencies": {
"clsx": "^2.1.1",
"mdsvex": "^0.12.6",
"tailwind-merge": "^3.3.1"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,jsx,tsx}": [
"oxlint --fix --max-warnings=0"
],
"*.{js,ts,cjs,mjs,jsx,tsx,svelte,md,json,css,html}": [
"prettier --write --ignore-unknown"
]
}
}