-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
57 lines (57 loc) · 1.59 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
{
"private": true,
"name": "monorepo",
"workspaces": [
"@tunnckocore/*",
"@hela/*",
"modules/*",
"xaxa/*",
"yaro/*",
"asia/*"
],
"type": "module",
"scripts": {
"cleanup": "node scripts/clean-node-modules.js && rm -f package-lock.json yarn.lcok",
"cli": "npx @hela/cli@latest",
"filter": "yarn cli filter",
"filter:asia": "yarn filter '*asia*'",
"filter:hela": "yarn filter '*hela*'",
"filter:xaxa": "yarn filter '*xaxa*'",
"filter:yaro": "yarn filter '*yaro*'",
"fmt": "prettier '**/*.{js,json}' --write",
"fresh": "yarn cleanup && npm install --force && yarn cli init",
"lint": "xaxa --log",
"new": "node scripts/create-package.js",
"pub:asia": "yarn cli publish $(yarn cli filter '*asia*') --verbose",
"pub:hela": "yarn cli publish $(yarn cli filter '*hela*') --verbose",
"pub:xaxa": "yarn cli publish $(yarn cli filter '*xaxa*') --verbose",
"pub:yaro": "yarn cli publish $(yarn cli filter '*yaro*') --verbose",
"test": "asia"
},
"dependencies": {
"c8": "^7.11.3",
"eslint": "^8.18.0",
"eslint-formatter-codeframe": "^7.32.1",
"expect": "^28.1.1",
"fast-glob": "^3.2.11",
"minargs": "*",
"minimist": "*",
"mri": "*",
"nopt": "*",
"prettier": "^2.7.1",
"yargs-parser": "*"
},
"hela": "@hela/preset-tunnckocore",
"contributors": [
"Charlike Mike Reagent <[email protected]> (https://tunnckocore.com)"
],
"prettier": "@tunnckocore/prettier-config",
"eslintConfig": {
"extends": [
"xaxa"
],
"rules": {
"max-statements": "off"
}
}
}