-
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) · 922 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 922 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": "about",
"private": true,
"version": "0.0.0",
"homepage": "https://dev0652.github.io/about/",
"type": "module",
"scripts": {
"start": "vite",
"host": "vite --host",
"build": "vite build",
"build-gh": "vite build --base=/about/",
"preview": "vite preview"
},
"dependencies": {
"@emailjs/browser": "^4.1.0",
"@sanity/client": "^6.20.0",
"@sanity/image-url": "^1.0.2",
"lodash.throttle": "^4.1.1",
"swipejs": "^2.3.1",
"vite-plugin-full-reload": "^1.0.5",
"vite-plugin-html-inject": "^1.0.1"
},
"devDependencies": {
"eslint": "^9.4.0",
"glob": "^8.1.0",
"husky": "^9.0.11",
"prettier": "^3.3.2",
"sass": "^1.69.5",
"vite": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint — fix",
"prettier — write",
"git add"
]
}
}