-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.61 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
55
56
57
58
59
{
"name": "root",
"private": true,
"author": {
"name": "Kevin Boosten",
"email": "[email protected]",
"url": "https://www.kevinboosten.dev/"
},
"scripts": {
"prepare": "is-ci || husky install",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test --ignore=sandbox",
"test:sandbox": "yarn sandbox:run:all",
"clean": "lerna clean",
"ci:publish": "lerna publish -y --no-verify-access",
"sandbox:clean": "git checkout HEAD -- sandbox && git clean -f -d sandbox",
"sandbox:run:app-center-build-config": "yarn --cwd sandbox ng add @ilionx/app-center-build-config",
"sandbox:run:all": "yarn sandbox:clean && yarn sandbox:run:app-center-build-config"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-lerna-scopes": "^12.1.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^6.0.0",
"is-ci": "^3.0.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"prettier": "2.2.1"
},
"workspaces": [
"packages/*",
"sandbox"
],
"bugs": {
"url": "https://github.com/ilionx/angular-schematics/issues"
},
"homepage": "https://github.com/ilionx/angular-schematics",
"repository": "ssh://[email protected]:ilionx/angular-schematics.git",
"keywords": [
"angular",
"schematics",
"ionic",
"app center"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-lerna-scopes"
]
},
"lint-staged": {
"*.{js,json,css,scss,md,ts,html}": "prettier --write"
}
}