-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
89 lines (89 loc) · 2.6 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
{
"name": "leaa",
"author": "[email protected]",
"private": true,
"sideEffect": false,
"license": "BSD-3-Clause-Clear",
"engines": {
"node": ">=12",
"npm": ">=6.4.0",
"yarn": ">=1.15"
},
"homepage": "https://github.com/SolidZORO/leaa",
"bugs": {
"url": "https://github.com/SolidZORO/leaa/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"command": {
"bootstrap": {
"hoist": true
},
"version": {
"conventionalCommits": true
},
"ignoreChanges": [
"**/*.md"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"fix": "lerna run fix",
"tsc-check": "yarn workspaces run tsc-check",
"---------------------------------------------------------------------- LINE ----": "----",
"versionup": "lerna version --conventional-commits --no-push",
"versionup:patch": "lerna version patch --conventional-commits --no-push",
"versionup:minor": "lerna version minor --conventional-commits",
"versionup:major": "lerna version major --conventional-commits",
"commit-version": "git add . && git commit -m \"chore(release): publish `node -p 'require(\"./lerna.json\").version'`\""
},
"devDependencies": {
"@commitlint/config-conventional": "^9.1.2",
"@commitlint/config-lerna-scopes": "^9.1.2",
"@types/eslint": "^7.2.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^26.0.10",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"babel-eslint": "^10.1.0",
"commitlint": "^9.1.2",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"jest": "^26.4.0",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"ts-jest": "^26.2.0",
"ts-node-dev": "^1.0.0-pre.57",
"typescript": "^3.9.7"
}
}