-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
57 lines (57 loc) · 2.16 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "bootstrap-blog",
"description": "Official blog for Bootstrap.",
"version": "1.0.0",
"private": true,
"author": "The Bootstrap Authors (https://github.com/twbs/blog/graphs/contributors)",
"repository": {
"type": "git",
"url": "git+https://github.com/twbs/blog.git"
},
"bugs": {
"url": "https://github.com/twbs/blog/issues"
},
"main": "",
"keywords": [],
"license": "MIT",
"homepage": "https://blog.getbootstrap.com",
"hugo-bin": {
"buildTags": "extended"
},
"scripts": {
"start": "npm run serve",
"build": "hugo --cleanDestinationDir --printPathWarnings --printUnusedTemplates",
"serve": "hugo server --port 4000 --disableFastRender --noHTTPCache --renderToMemory --printPathWarnings --printUnusedTemplates",
"serve-only": "npx sirv-cli _site --port 4000",
"test": "npm-run-all build --parallel --continue-on-error --aggregate-output test-*",
"test-eslint": "eslint --cache --cache-location .cache/.eslintcache .",
"test-fusv": "fusv src/assets/scss/",
"test-stylelint": "stylelint src/assets/scss/ --cache --cache-location .cache/.stylelintcache",
"test-markdownlint": "markdownlint-cli2 \"**/*.md\" \"!**/node_modules/**\"",
"test-linkinator": "linkinator _site --recurse --silent --skip \"^(?!http://localhost)\"",
"test-vnu": "node scripts/vnu-jar.mjs",
"test-lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"netlify": "cross-env-shell HUGO_BASEURL=$DEPLOY_PRIME_URL npm run build"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"autoprefixer": "^10.4.20",
"bootstrap": "^5.3.3",
"clipboard": "^2.0.11",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"find-unused-sass-variables": "^6.0.0",
"globals": "^14.0.0",
"hugo-bin": "^0.133.5",
"linkinator": "^6.1.2",
"lockfile-lint": "^4.14.0",
"markdownlint-cli2": "^0.14.0",
"npm-run-all2": "^7.0.1",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"stylelint": "^16.10.0",
"stylelint-config-twbs-bootstrap": "^15.1.0",
"vanilla-lazyload": "^19.1.3",
"vnu-jar": "24.10.17"
}
}