-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.42 KB
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
{
"name": "refetty",
"private": true,
"scripts": {
"pkgs": "run-s pkgs:*",
"pkgs:test": "lerna run --parallel test",
"pkgs:lint": "lerna run --parallel lint",
"pkgs:build": "lerna run --parallel build",
"prerelease": "yarn run pkgs",
"release": "lerna publish --conventional-commits",
"release:latest": "yarn release --npm-tag=latest --preid=rc"
},
"author": {
"name": "Bruno Bertolini",
"email": "dev@brunobertolini.com",
"url": "http://brunobertolini.com"
},
"repository": {
"type": "git",
"url": "https://github.com/brunobertolini/refetty"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
},
"lint-staged": {
"*.{{js,jsx,mjs,ts,tsx,md,mdx}}": [
"yarn pkgs:lint",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@commitlint/config-lerna-scopes": "^9.0.1",
"babel-jest": "^26.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"microbundle": "^0.12.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"standard-version": "^8.0.0"
}
}