-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
48
49
{
"name": "@germinator/monorepo",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"germinator-core",
"germinator-helpers",
"germinator-node",
"germinator-cli",
"germinator"
]
},
"scripts": {
"build": "yarn workspaces run build",
"clean": "yarn workspaces run clean",
"test": "yarn workspaces run test",
"lint": "yarn workspaces run lint",
"fix": "yarn workspaces run fix",
"cli": "yarn --cwd ./germinator-cli cli",
"docs:dev": "cd docs && mdbook serve",
"docs:build": "cd docs && mdbook build"
},
"devDependencies": {
"@commitlint/cli": "11",
"@lcdev/commitlint": "1",
"@lcdev/eslint-config": "0.3",
"@lcdev/jest": "0.3",
"@lcdev/prettier": "0.1",
"@lcdev/tsconfig": "0.2",
"@types/jest": "26",
"eslint": "7",
"husky": "4",
"jest": "26",
"prettier": "2",
"typescript": "4"
},
"prettier": "@lcdev/prettier",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@lcdev/commitlint"
]
}
}