-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "js-ts-monotrepos",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:mike-north/js-ts-monorepos.git",
"author": "Mike North <michael.l.north@gmail.com>",
"license": "BSD-2-Clause",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "scripty",
"lint": "scripty",
"clean": "scripty",
"test": "scripty"
},
"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.9.0",
"@typescript-eslint/parser": "^4.9.0",
"commitlint": "^11.0.0",
"eslint": "^7.14.0",
"husky": "^4.3.0",
"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"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}