-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 1.08 KB
/
package.json
File metadata and controls
21 lines (21 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "hover",
"version": "1.0.0",
"private": true,
"description": "Web cache warming service",
"scripts": {
"format:check": "prettier --check \"**/*.{md,yml,yaml,json,html,css,js}\"",
"format:write": "prettier --write \"**/*.{md,yml,yaml,json,html,css,js}\"",
"sync:components": "cp web/static/app/components/hover-job-card.js webflow-designer-extension-cli/public/hover-job-card.js && cp web/static/app/components/hover-data-table.js webflow-designer-extension-cli/public/hover-data-table.js && cp web/static/app/components/hover-status-pill.js webflow-designer-extension-cli/public/hover-status-pill.js && cp web/static/app/components/hover-toast.js webflow-designer-extension-cli/public/hover-toast.js && node scripts/patch-extension-components.js && echo 'Components synced to extension public/'",
"prepare": "sh scripts/setup-hooks.sh"
},
"lint-staged": {
"*.{html,js,css,json,yml,yaml,md}": "prettier --write"
},
"devDependencies": {
"eslint": "^9.39.2",
"eslint-plugin-security": "^3.0.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1"
}
}