-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 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
{
"type": "module",
"dependencies": {
"@sveltejs/adapter-cloudflare": "^4.6.1",
"@sveltejs/adapter-static": "^3.0.2",
"@sveltejs/kit": "^2.5.18",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@typescript-eslint/parser": "^7.15.0",
"dayjs": "^1.11.11",
"eslint-plugin-svelte": "^2.41.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"svelte-check": "^3.8.4",
"typescript": "^5.5.2",
"wrangler": "^3.64.0"
},
"scripts": {
"dev": "vite",
"build": "rm -rf build && vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "prettier --check . && eslint .",
"cloudflare": "npm run lint && npm run build"
},
"devDependencies": {
"eslint": "^9.6.0",
"globals": "^15.8.0",
"svelte": "^4.2.18",
"vite": "^5.3.2"
},
"lint-staged": {
"*.ts": [
"npm run lint"
],
"*.svelte": [
"npm run lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}