-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "js-ts-monotrepos",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:jaramillo-carlos/js-ts-monotrepos.git",
"author": "Carlos Jaramillo <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"@microsoft/api-documenter": "^7.12.1",
"@microsoft/api-extractor": "^7.12.1",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"commitlint": "^11.0.0",
"eslint": "^7.15.0",
"husky": "^4.3.6",
"lerna": "^3.22.1",
"lerna-changelog": "^1.0.1",
"rimraf": "^3.0.2",
"scripty": "^2.0.0"
},
"volta": {
"node": "14.15.1",
"yarn": "1.22.10"
},
"scripts": {
"start": "scripty",
"greet": "scripty",
"api-docs": "scripty",
"build": "scripty",
"dev": "scripty",
"test": "scripty",
"lint": "scripty",
"clean": "scripty",
"commit": "cz"
},
"scripty": {
"path": "./scripts/workspace",
"windowsPath": "./scripts-win/workspace"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}