forked from HugoBlox/kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.8 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.8 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
{
"name": "hugo-blox-builder",
"version": "1.0.0",
"description": "The Page Builder for Hugo",
"author": "George Cushen",
"license": "MIT",
"packageManager": "pnpm@10.14.0",
"bugs": {
"url": "https://github.com/HugoBlox/hugo-blox-builder/issues"
},
"homepage": "https://hugoblox.com",
"repository": {
"type": "git",
"url": "git+https://github.com/HugoBlox/hugo-blox-builder.git"
},
"dependencies": {
"katex": "^0.16.9",
"medium-zoom": "^1.0.8",
"mermaid": "^10.6.0",
"markmap-autoloader": "^0.15.4",
"alpinejs": "^3.13.10",
"plotly.js": "^2.27.0",
"rollup-plugin-delete": "^2.0.0",
"vite": "^7.1.2",
"vite-hugo-plugin": "^3.1.0",
"vite-plugin-static-copy": "^3.1.1"
},
"devDependencies": {
"eslint": "~8.15.0",
"eslint-config-prettier": "~8.5.0",
"prettier": "~2.6.2",
"prettier-plugin-go-template": "~0.0.12",
"stylelint": "14.8.2",
"stylelint-config-prettier": "~9.0.3",
"stylelint-config-standard": "~25.0.0",
"stylelint-scss": "~4.2.0"
},
"scripts": {
"prod": "scripts/view-starter-prod.sh",
"dev": "scripts/view-starter-dev.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "pnpm run lint:js && pnpm run lint:style",
"lint:js": "eslint '*/**/*.{js,ts,tsx}'",
"lint:js:fix": "eslint '*/**/*.{js,ts,tsx}' --fix",
"lint:style": "stylelint '**/*.css'",
"lint:style:fix": "stylelint '**/*.css' --fix",
"format": "prettier --write \"*.{css,js,json,md}\" \"./**/*.{css,js,json,md}\"",
"stylelint-conflict-check": "stylelint-config-prettier-check",
"update:starters": "poetry run python ./scripts/update.py",
"vendor:libs": "vite build --config vite.config.js",
"vendor:libs:watch": "vite build --config vite.config.js --watch"
},
"browserslist": "> 1%"
}