-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.98 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
{
"name": "frontend-defaults",
"version": "1.0.0",
"license": "MIT",
"repository": "https://github.com/merkle-open/frontend-defaults",
"private": true,
"author": "Merkle Inc.",
"workspaces": [
"codequality/*",
"repo/*"
],
"scripts": {
"update-dependencies": "npm-run-all --parallel update-dependencies:*",
"update-dependencies:packages": "lerna exec -- npm-check-updates -u --deprecated",
"update-dependencies:root": "npm-check-updates -u --deprecated",
"clean": "npx -y npm-run-all --npm-path npm clean:*",
"clean:lock": "npx -y rimraf --glob **/package-lock.json",
"clean:modules": "npm exec --workspaces -- npx -y rimraf node_modules && npx -y rimraf node_modules",
"cz": "git-cz",
"prepare": "husky",
"prettier": "prettier --write \"**/*.*(js|jsx|ts|tsx|json|css|scss|md|mdx|graphql|gql|yml|yaml)\"",
"test": "lerna run test",
"lint": "lerna run lint",
"prerelease": "npm-run-all test lint",
"release": "lerna publish --conventional-commits --no-commit-hooks --allow-branch master",
"start": "npm run test"
},
"lint-staged": {
"codequality/*.*{js,jsx,ts,tsx,json,md,mdx,graphql,gql,yml,yaml}": [
"prettier --write"
],
"doc/*.*{js,jsx,ts,tsx,json,md,mdx,graphql,gql,yml,yaml}": [
"prettier --write"
],
"editorconfig/*.*{js,jsx,ts,tsx,json,md,mdx,graphql,gql,yml,yaml}": [
"prettier --write"
],
"repo/*.*{js,jsx,ts,tsx,json,md,mdx,graphql,gql,yml,yaml}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"./repo/commitlint-conventional-changelog"
]
},
"config": {
"commitizen": {
"path": "./repo/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"commitizen": "4.3.1",
"conventional-changelog": "5.1.0",
"husky": "9.1.6",
"lerna": "8.1.8",
"lint-staged": "15.2.10",
"npm-run-all": "4.1.5",
"npm-check-updates": "17.1.4",
"prettier": "3.3.3",
"rimraf": "5.0.10"
}
}