-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.56 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
{
"name": "@fmal/monorepo2",
"version": "0.0.0-ignore",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/fmal/monorepo2"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=14",
"yarn": ">=1.21"
},
"lint-staged": {
"{package.json,yarn.lock}": "yarn dedupe",
"{*.config.js,packages/*/src/**/*.{js,ts,tsx}}": "eslint --fix",
"**/*.{json,md,mdx,yml}": "prettier --write"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
100
]
}
},
"scripts": {
"preinstall": "npx only-allow yarn",
"commit": "commit",
"build": "yarn workspaces foreach -tv run prepack",
"test": "yarn workspaces foreach -pv run test",
"postinstall": "husky install",
"release": "monodeploy --config-file monodeploy.config.js --log-level 0",
"release:dry": "yarn run release --dry-run"
},
"resolutions": {
"@yarnpkg/plugin-compat": "3.1.2-rc.1"
},
"packageManager": "yarn@3.1.1",
"dependencies": {
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "16.0.0",
"@commitlint/prompt-cli": "16.1.0",
"@monodeploy/plugin-github": "0.3.15",
"@monodeploy/types": "0.10.5",
"@yarnpkg/pnpify": "3.1.1-rc.12",
"conventional-changelog-conventionalcommits": "4.6.3",
"eslint": "8.8.0",
"husky": "7.0.4",
"jest": "27.4.7",
"lint-staged": "12.3.2",
"monodeploy": "2.8.20",
"prettier": "2.5.1",
"typescript": "4.5.5"
}
}