-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"packages/*/*"
]
},
"scripts": {
"precommit": "lint-staged",
"version:release": "lerna version --yes",
"version:beta": "yarn version:release -- --preid beta",
"release:pkg": "lerna publish from-git --yes",
"release": "yarn version:release && yarn release:pkg",
"prepare": "lerna run prepare",
"lint:fix": "lerna run lint:fix --sort",
"test": "jest --coverage"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@jest/globals": "^27.3.1",
"@planjs/fabric": "^0.0.91",
"@types/jest": "^26.0.15",
"@types/node": "^15.0.2",
"@types/shelljs": "^0.8.11",
"all-contributors-cli": "^6.20.0",
"babel-jest": "^27.3.1",
"chokidar-cli": "^2.1.0",
"commitizen": "^4.2.2",
"conventional-changelog-cli": "^2.1.0",
"cz-conventional-changelog": "^3.3.0",
"execa": "^5.1.1",
"husky": "^4.3.0",
"jest": "^26.6.1",
"lerna": "5.3.0",
"lint-staged": "^11.0.0",
"shelljs": "^0.8.5",
"sort-package-json": "^1.50.0",
"standard-version": "^9.0.0",
"ts-node": "^10.0.0",
"typescript": "4.1.5"
},
"resolutions": {
"source-map": "^0.8.0-beta.0",
"@types/configstore": "5.0.0",
"stan-builder": "*"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}