-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "ts-monorepo",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/whatsaaaa/ts-monorepo",
"author": "Aleksandar Milicevic <[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.6",
"@microsoft/api-extractor": "^7.13.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"commitlint": "^11.0.0",
"eslint": "^7.18.0",
"husky": "^4.3.8",
"lerna": "^3.22.1",
"lerna-changelog": "^1.0.1",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"scripty": "^2.0.0"
},
"scripts": {
"api-docs": "scripty",
"start": "scripty",
"dev": "scripty",
"build": "scripty",
"clean": "scripty",
"lint": "scripty",
"test": "scripty",
"pr": "scripty"
},
"scripty": {
"path": "./scripts/workspace"
},
"volta": {
"node": "14.15.4",
"yarn": "1.22.10"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "lerna run lint && lerna run test"
}
}
}