-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.68 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
{
"name": "hugo-modules",
"description": "@davidsneighbour's reusable gohugo components.",
"version": "1.2024.23",
"license": "MIT",
"private": true,
"repository": "davidsneighbour/hugo-modules",
"author": "Patrick Kollitsch <[email protected]> (https://davids-neighbour.com)",
"bugs": "https://github.com/davidsneighbour/hugo-modules/issues",
"homepage": "https://github.com/davidsneighbour/hugo-modules#readme",
"scripts": {
"build": "node bin/release/system/update.mjs && ./bin/components",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.js",
"clean": "rimraf node_modules package-lock.json",
"clean:all": "npm run clean --workspaces && npm run clean",
"lint:lockfiles": "lockfile-lint --path package-lock.json --type=npm --validate-https --allowed-hosts=npm --empty-hostname=false --validate-package-names --validate-checksum --validate-integrity",
"serve:webpack": "webpack --watch --config webpack.js",
"update": "npm-check-updates --deep --upgrade --target=minor",
"update:major": "npm-check-updates --deep --upgrade --install & node bin/release/system/update.mjs & bin/components && npm install",
"tests": "playwright test",
"tests:generate": "playwright codegen"
},
"stylelint": {
"extends": "@davidsneighbour/stylelint-config"
},
"type": "module",
"workspaces": [
"modules/*"
],
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/node": "^22.9.1",
"@davidsneighbour/markdownlint-config": "2024.4.8",
"@davidsneighbour/prettier-config": "2024.4.8",
"@davidsneighbour/remark-config": "2024.4.8",
"@davidsneighbour/tools": "2024.4.8",
"dotenv": "^16.4.5"
}
}