-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
116 lines (116 loc) · 3.45 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "seb-ng-wizard-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve seb-ng-wizard-lazy-demo --port 4201 --host=0.0.0.0",
"start:simple": "ng serve seb-ng-wizard-simple-usage --port 4202 --host=0.0.0.0 --configuration production",
"prebuild": "rimraf dist",
"build": "ng build seb-ng-wizard --configuration production",
"build:watch": "ng build seb-ng-wizard --watch",
"prebuild:demo": "rimraf dist/seb-ng-wizard-lazy-demo",
"build:demo": "ng build seb-ng-wizard-lazy-demo --configuration production --base-href /ng-wizard/",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"commit": "git-cz",
"semantic-release": "semantic-release",
"package-lock-sanitizer": "package-lock-sanitizer",
"add-fa-config": "npm config set '@fortawesome:registry' https://npm.fontawesome.com/ && npm config set '//npm.fontawesome.com/:_authToken' $FA_TOKEN"
},
"release": {
"pkgRoot": "./dist/ng-wizard",
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"master",
"next",
"next-major",
{
"name": "release\\/([-a-z]*)",
"channel": "${name.replace(/^release\\//g, '')}",
"prerelease": "${name.replace(/^release\\//g, '')}"
}
]
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.8",
"@angular/common": "^15.2.8",
"@angular/compiler": "^15.2.8",
"@angular/core": "^15.2.8",
"@angular/forms": "^15.2.8",
"@angular/platform-browser": "^15.2.8",
"@angular/platform-browser-dynamic": "^15.2.8",
"@angular/router": "^15.2.8",
"@fortawesome/angular-fontawesome": "^0.10.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@ngneat/transloco": "^3.2.0",
"@sebgroup/bootstrap": "^6.0.0",
"core-js": "^2.6.11",
"ngx-markdown": "^15.1.2",
"rxjs": "^6.6.0",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.6",
"@angular/cli": "^15.2.6",
"@angular/compiler-cli": "^15.2.8",
"@angular/language-service": "^15.2.8",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^12.20.25",
"codelyzer": "^6.0.0",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"lint-staged": "^8.2.1",
"ng-packagr": "^15.2.2",
"package-lock-sanitizer": "^1.0.0",
"postcss": "^8.3.6",
"prettier": "^1.19.1",
"protractor": "~7.0.0",
"replace": "^1.2.0",
"rimraf": "^2.7.1",
"semantic-release": "^19.0.5",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-scss": "^3.21.0",
"ts-node": "~7.0.0",
"tslint": "~6.1.0",
"typescript": "~4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run package-lock-sanitizer && git add package-lock.json",
"commit-msg": "commitlint --edit"
}
},
"lint-staged": {
"*.scss": [
"stylelint --fix --syntax=scss",
"git add"
],
"*.{ts,scss,html,md,json}": [
"prettier --write",
"git add"
],
"*.ts": [
"tslint --fix",
"git add"
]
}
}