-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 891 Bytes
/
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
{
"comments": {
"dependencies": {
"@algolia/client-search": "project",
"algoliasearch": "project",
"instantsearch.js": "project"
},
"devDependencies": {
"husky": "project",
"lint-staged": "project",
"prettier": "project",
"prettier-plugin-go-template": "project"
}
},
"dependencies": {
"@algolia/client-search": "^5.20.3",
"algoliasearch": "^5.20.3",
"instantsearch.js": "^4.77.3"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2",
"prettier-plugin-go-template": "^0.0.15"
},
"lint-staged": {
"*.{html,css}": "prettier --write",
"*.{js,jsx,ts,tsx}": "prettier --write"
},
"scripts": {
"dev": "cd exampleSite && hugo server --gc --watch",
"format": "prettier --write",
"prepare": "husky"
},
"packageManager": "yarn@4.6.0"
}