-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.45 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
{
"private": true,
"packageManager": "npm@10.9.2",
"workspaces": [
"examples/*",
"packages/*",
"tests/*",
"website"
],
"scripts": {
"prepare": "husky",
"publish-package": "npx lerna publish from-package --pre-dist-tag canary --yes",
"build": "npx lerna run build",
"test": "npx lerna run test --concurrency 1",
"coverage": "npx c8 --reporter=lcov npm run test",
"lint": "concurrently \"npm:lint:*\"",
"lint:eslint": "npx eslint . --ext .js",
"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",
"fix": "concurrently \"npm:fix:*\"",
"fix:eslint": "npx eslint . --fix --ext .js",
"fix:prettier": "npx prettier . --write"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"c8": "^10.1.3",
"concurrently": "^9.0.0",
"editorconfig-checker": "^6.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.1.5",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"markdownlint-cli": "^0.43.0",
"prettier": "^3.3.3",
"textlint": "^14.3.0",
"textlint-rule-allowed-uris": "^1.0.6",
"typescript": "^5.6.3"
}
}