-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.22 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@wayofdev/npm-shareable-configs",
"version": "1.3.0",
"private": true,
"description": "Shareable configurations with fully automated package publishing to NPM Registry.",
"keywords": [
"eslint",
"browserslist",
"commitlint",
"htmlhint",
"jest",
"lint-staged",
"markdownlint",
"postcss",
"secretlint",
"stylelint",
"tsconfig"
],
"homepage": "https://github.com/wayofdev/npm-shareable-configs",
"bugs": {
"url": "https://github.com/wayofdev/npm-shareable-configs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wayofdev/npm-shareable-configs"
},
"license": "MIT",
"author": {
"name": "Andrij Orlenko",
"email": "[email protected]",
"url": "https://github.com/lotyp"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo build",
"clean": "run-p clean:global-cache clean:turbo",
"clean:turbo": "turbo clean --parallel",
"clean:global-cache": "rimraf ./.cache",
"commit": "git-cz",
"cs": "changeset",
"cs:publish": "changeset publish",
"cs:release": "turbo build lint test && changeset version && changeset publish",
"cs:version": "changeset version",
"deps:check": "pnpm dlx npm-check-updates@latest --configFileName .ncurc.yml --deep --mergeConfig",
"deps:update": "pnpm dlx npm-check-updates@latest --configFileName .ncurc.yml -u --deep --mergeConfig && pnpm install",
"preinstall": "npx only-allow pnpm",
"lint": "run-p lint:turbo lint:md lint:js lint:secrets lint:package-json",
"lint:commits": "pnpm commitlint --from HEAD~1 --to HEAD --verbose",
"lint:fix": "turbo lint:fix && pnpm lint:package-json",
"lint:js": "eslint --fix **/*.js",
"lint:md": "markdownlint --fix **/*.md --ignore '**/node_modules/**' --ignore '**/CHANGELOG.md'",
"lint:package-json": "sort-package-json package.json packages/*/package.json",
"lint:secrets": "secretlint **/*",
"lint:turbo": "turbo lint --parallel",
"lint:types": "turbo lint:types --parallel",
"lint:dist": "turbo lint:dist --parallel",
"prepare": "is-ci || husky install",
"test:unit": "turbo test-unit"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@types/node": "20.12.2",
"@types/prettier": "3.0.0",
"@types/shell-quote": "1.7.5",
"@wayofdev/eslint-config-bases": "workspace:*",
"@wayofdev/lint-staged-config": "workspace:*",
"@wayofdev/secretlint-config": "workspace:*",
"actionlint": "2.0.6",
"commitizen": "4.3.0",
"eslint": "8.57.0",
"husky": "9.0.11",
"is-ci": "3.0.1",
"lint-staged": "15.2.2",
"markdownlint": "0.34.0",
"markdownlint-cli": "0.39.0",
"npm-run-all2": "6.1.2",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"secretlint": "8.1.2",
"shell-quote": "1.8.1",
"sort-package-json": "2.10.0",
"turbo": "1.13.1",
"typescript": "5.4.3"
},
"peerDependencies": {
"actionlint": "2.0.6",
"markdownlint": "0.34.0",
"secretlint": "8.1.2",
"sort-package-json": "2.10.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}