-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.81 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.81 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
{
"name": "thomasvaeth.github.io",
"version": "4.0.0",
"type": "module",
"description": "Thomas Vaeth is a Design Technologist at Square in Seattle, Washington.",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write src",
"lint": "eslint src && eslint .",
"lint:fix": "eslint src --fix",
"preview": "vite preview",
"clean": "rm -rf dist",
"prepare": "husky"
},
"author": {
"name": "Thomas Vaeth",
"email": "thomas.vaeth@gmail.com",
"url": "https://thomasvaeth.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomasvaeth/thomasvaeth.github.io.git"
},
"bugs": {
"url": "https://github.com/thomasvaeth/thomasvaeth.github.io/issues"
},
"engines": {
"node": "24.14.0"
},
"dependencies": {
"fast-xml-parser": "^5.4.2",
"lenis": "^1.3.17"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/js": "^10.0.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.53.4",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.15.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"netlify-cli": "^24.0.1",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.0",
"sass-embedded": "^1.97.3",
"svelte": "^5.53.5",
"svelte-check": "^4.4.4",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"lint-staged": {
"*.{js,svelte}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,json,md,html}": "prettier --write"
}
}