-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.74 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "root",
"version": "0.0.0",
"private": true,
"author": "Patrick Kollitsch <patrick@davids-neighbour.com> (https://davids-neighbour.com)",
"bugs": "https://github.com/davidsneighbour/configurations/issues",
"homepage": "https://github.com/davidsneighbour/configurations/",
"type": "module",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@davidsneighbour/babel-config": "file:./packages/babel-config",
"@davidsneighbour/biome-config": "file:./packages/biome-config",
"@davidsneighbour/bootstrap-config": "file:./packages/bootstrap-config",
"@davidsneighbour/browserslist-config": "file:./packages/browserslist-config",
"@davidsneighbour/commitlint-config": "file:./packages/commitlint-config",
"@davidsneighbour/cypress-config": "file:./packages/cypress-config",
"@davidsneighbour/eslint-config": "file:./packages/eslint-config",
"@davidsneighbour/htmlvalidate-config": "file:./packages/htmlvalidate-config",
"@davidsneighbour/markdownlint-config": "file:./packages/markdownlint-config",
"@davidsneighbour/postcss-config": "file:./packages/postcss-config",
"@davidsneighbour/prettier-config": "file:./packages/prettier-config",
"@davidsneighbour/release-config": "file:./packages/release-config",
"@davidsneighbour/remark-config": "file:./packages/remark-config",
"@davidsneighbour/stylelint-config": "file:./packages/stylelint-config",
"@davidsneighbour/tools": "file:./packages/tools",
"@davidsneighbour/webpack-config": "file:./packages/webpack-config",
"@types/node": "22.9.0",
"lerna": "8.1.9"
},
"scripts": {
"lint": "wireit",
"release": "lerna publish --no-private --no-changelog --force-publish --message 'chore(release): publish %s' --signoff-git-commit --sign-git-commit --sign-git-tag",
"update": "wireit"
},
"wireit": {
"update": {
"dependencies": [
"update:commit"
]
},
"update:commit": {
"command": "git add -A && git commit -m 'chore(deps): update dependencies'",
"dependencies": [
"fixpack"
]
},
"lint": {
"dependencies": [
"lint:lockfiles"
]
},
"lint:lockfiles": {
"command": "lockfile-lint --path package-lock.json --type=npm --validate-https --allowed-hosts=npm --empty-hostname=false --validate-package-names --validate-checksum --validate-integrity",
"env": {
"WIREIT_FAILURES": "continue"
}
},
"fixpack": {
"command": "fixpack || fixpack",
"dependencies": [
"update:packages"
]
},
"update:packages": {
"command": "npm-check-updates"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=22.1.0",
"npm": ">=10.8.0"
}
}