-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "ts-monorepo-template",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/Jordan-Gilliam/ts-monorepo-template.git",
"author": "Jordan Gilliam <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"volta": {
"node": "12.19.0",
"yarn": "1.22.10"
},
"scripts": {
"lerna": "lerna",
"api-docs": "scripty",
"build": "scripty",
"test": "scripty",
"lint": "scripty",
"clean": "scripty",
"commit": "cz"
},
"scripty": {
"path": "./scripts/workspace"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"commitlint": "^11.0.0",
"eslint": "^7.11.0",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lerna-changelog": "^1.0.1",
"rimraf": "^3.0.2",
"scripty": "^2.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}