-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "titan install --no-save",
"bootstrap:changed": "titan install --changed --no-save",
"build": "titan run build",
"build:changed": "titan run build --changed",
"test": "titan run test",
"test:changed": "titan run test --changed",
"version": "titan version",
"publish": "titan publish"
},
"titan": {
"packages": [
"./packages",
"./examples"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json,ts,tsx,js,jsx}": "prettier --write"
},
"prettier": {
"tabWidth": 4
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@jakehamilton/titan": "^5.5.4",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1"
}
}