-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.07 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@w5s/project-config-src",
"version": "1.0.0-alpha.0",
"private": true,
"description": "",
"repository": {
"type": "git",
"url": "git@github.com:w5s/project-config.git"
},
"license": "MIT",
"type": "module",
"files": [],
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"/eslint"
]
},
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"code-analysis": ":",
"configure": "npm run mrm -- configure",
"coverage": ":",
"develop": ":",
"docs": "node markdown.mjs && turbo run docs",
"format": "turbo run format --continue",
"format:root": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml --ignore-pattern='packages/*/**' --fix",
"lint": "turbo run lint",
"lint:root": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml --ignore-pattern='packages/*/**'",
"mrm": "npm exec --package=mrm -- mrm --dir ./packages/mrm-preset",
"postbuild": "npm run docs",
"prepare": "npx run-p \"prepare:*\"",
"prepare:githooks": "[ -n \"${CI:-}\" ] || git config core.hooksPath .githooks",
"prepare:packages": "turbo run prepare",
"release": "[ -n \"${CI:-}\" ] && npx lerna publish --yes || npx lerna publish",
"rescue": "git clean -fdx;yarn install",
"spellcheck": "turbo run spellcheck",
"spellcheck:root": "cspell --no-progress '**' --exclude='packages/*/**'",
"test": "turbo run test",
"validate": "turbo run build lint test spellcheck"
},
"commitlint": {
"extends": [
"@w5s/commitlint-config"
]
},
"lint-staged": {
"!(**/dist/**)*.js?(x)": [
"eslint"
],
"!(**/dist/**)*.ts?(x)": [
"eslint"
],
"*.{json,jsonc,json5}": [
"eslint"
],
"*.{yml,yaml}": [
"eslint"
],
"*.js?(x)": [
"eslint"
],
"*.ts?(x)": [
"eslint"
]
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"sort-keys"
],
"extends": [
"@w5s/eslint-config"
],
"rules": {
"unicorn/prefer-module": "off"
},
"root": true
},
"eslintIgnore": [
"**/dist/**"
],
"devDependencies": {
"@lerna-lite/publish": "3.10.1",
"@types/node": "20.17.10",
"@w5s/commitlint-config": "workspace:*",
"@w5s/conventional-changelog": "workspace:*",
"@w5s/cspell-config": "workspace:*",
"@w5s/eslint-config": "workspace:*",
"@w5s/mrm-preset": "workspace:*",
"@w5s/prettier-config": "workspace:*",
"@w5s/ts-config": "workspace:*",
"clean-package": "2.2.0",
"cspell": "8.17.1",
"eslint": "8.57.1",
"eslint-plugin-sort-keys": "2.3.5",
"markdown-magic": "3.3.0",
"markdown-magic-package-json": "2.0.2",
"markdown-magic-subpackage-list": "1.1.2",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"turbo": "2.3.3",
"typescript": "5.7.2",
"vite": "6.0.5",
"vitest": "2.1.8"
},
"packageManager": "yarn@4.5.3",
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0",
"yarn": ">=1.0.0"
},
"sideEffect": false
}