-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.86 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
{
"private": true,
"name": "npm-bananass",
"version": "0.0.0",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.18.0"
},
"workspaces": [
"examples/*",
"packages/*",
"tests/*",
"websites/*"
],
"scripts": {
"prepare": "husky",
"publish-package": "npx lerna publish from-package --pre-dist-tag canary --yes",
"coverage": "npx c8 --reporter=lcov npm run test",
"test": "npx lerna run test",
"test:pkg:b": "npm run test -w packages/bananass",
"test:pkg:buc": "npm run test -w packages/bananass-utils-console",
"test:pkg:ecb": "npm run test -w packages/eslint-config-bananass",
"test:pkg:ecbr": "npm run test -w packages/eslint-config-bananass-react",
"test:pkg:pcb": "npm run test -w packages/prettier-config-bananass",
"build": "npx lerna run build",
"build:ex:sb": "npm run bananass:build -w examples/solutions-bananass -- 1000",
"build:pkg:b": "npm run build -w packages/bananass",
"build:pkg:buc": "npm run build -w packages/bananass-utils-console",
"build:pkg:ecb": "npm run build -w packages/eslint-config-bananass",
"build:pkg:ecbr": "npm run build -w packages/eslint-config-bananass-react",
"build:pkg:pcb": "npm run build -w packages/prettier-config-bananass",
"build:ws:ecb": "npm run build -w websites/eslint-config-bananass",
"build:ws:ecbr": "npm run build -w websites/eslint-config-bananass-react",
"build:ws:vp": "npm run build -w websites/vitepress",
"dev": "npm run dev:ws:vp",
"dev:pkg:b": "npm run dev -w packages/bananass",
"dev:ws:ecb": "npm run dev -w websites/eslint-config-bananass",
"dev:ws:ecbr": "npm run dev -w websites/eslint-config-bananass-react",
"dev:ws:vp": "npm run dev -w websites/vitepress",
"start": "npm run start:ws:vp",
"start:pkg:b": "npm run start -w packages/bananass",
"start:ws:vp": "npm run start -w websites/vitepress",
"fix": "concurrently \"npm:fix:*\"",
"fix:eslint": "npx eslint --fix",
"fix:prettier": "npx prettier . --write",
"lint": "concurrently \"npm:lint:*\"",
"lint:eslint": "npx eslint",
"lint:prettier": "npx prettier . --check",
"lint:editorconfig": "npx editorconfig-checker -config .editorconfig-checker.json",
"lint:markdownlint": "npx markdownlint **/*.md",
"lint:textlint": "npx textlint -f pretty-error **/*.md"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"c8": "^10.1.3",
"concurrently": "^9.1.0",
"editorconfig-checker": "^6.0.1",
"eslint": "^9.19.0",
"eslint-config-bananass": "^0.0.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.4.3",
"markdownlint-cli": "^0.44.0",
"prettier": "^3.4.1",
"prettier-config-bananass": "^0.0.0",
"textlint": "^14.3.0",
"textlint-rule-allowed-uris": "^1.0.6",
"typescript": "^5.7.2"
}
}