forked from Wykks/ngx-mapbox-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.78 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
{
"name": "ngx-mapbox-gl-srcs",
"version": "8.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve showcase",
"build": "ng build --configuration production ngx-mapbox-gl",
"build:watch": "ng build --watch ngx-mapbox-gl",
"build:ngx-mapbox-gl-geocoder-control": "ng build --configuration production ngx-mapbox-gl-geocoder-control",
"build:showcase": "npm run build && npm run build:ngx-mapbox-gl-geocoder-control && ng build --configuration production showcase --base-href /ngx-mapbox-gl/",
"publish:showcase": "ngh -d dist/showcase/",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"release": "standard-version -a",
"update-version": "./update_version.sh",
"prettier": "prettier --config ./.prettierrc --write \"projects/**/*{.ts,.js,.json,.css,.scss}\"",
"commit": "git-cz",
"prepare": "husky install"
},
"standard-version": {
"scripts": {
"postbump": "yarn update-version && yarn build",
"precommit": "git add projects/ngx-mapbox-gl/package.json"
}
},
"lint-staged": {
"*.ts": "ng lint --fix",
"*.{js,ts,md,html,css,json}": "prettier --config ./.prettierrc --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"commitizen": {
"path": "cz-conventional-changelog"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.3.9",
"@angular/cdk": "^13.3.7",
"@angular/common": "^13.3.9",
"@angular/compiler": "^13.3.9",
"@angular/core": "^13.3.9",
"@angular/forms": "^13.3.9",
"@angular/material": "^13.3.7",
"@angular/platform-browser": "^13.3.9",
"@angular/platform-browser-dynamic": "^13.3.9",
"@angular/router": "^13.3.9",
"@mapbox/mapbox-gl-geocoder": "^4.7.1",
"@ngrx/effects": "^13.2.0",
"@ngrx/router-store": "^13.2.0",
"@ngrx/store": "^13.2.0",
"@ngrx/store-devtools": "^13.2.0",
"@stackblitz/sdk": "^1.3.0",
"lodash-es": "^4.17.11",
"mapbox-gl": "^2.3.1",
"ngx-markdown": "^13.1.0",
"rxjs": "^7.4.6",
"scroll-into-view-if-needed": "^2.2.20",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.6",
"@angular-eslint/builder": "13.2.1",
"@angular-eslint/eslint-plugin": "13.2.1",
"@angular-eslint/eslint-plugin-template": "13.2.1",
"@angular-eslint/schematics": "13.2.1",
"@angular-eslint/template-parser": "13.2.1",
"@angular/cli": "^13.3.6",
"@angular/compiler-cli": "^13.3.9",
"@ngrx/schematics": "^13.2.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.6",
"@types/lodash-es": "^4.17.3",
"@types/mapbox-gl": "^2.3.0",
"@types/mapbox__mapbox-gl-geocoder": "4.7.0",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"angular-cli-ghpages": "^0.6.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^8.12.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"eslint-config-prettier": "8.1.0",
"husky": "^6.0.0",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-mocha-reporter": "^2.2.5",
"lint-staged": "^11.0.0",
"ng-packagr": "^13.3.1",
"pixel-diff": "^1.0.1",
"prettier": "2.3.1",
"protractor": "~7.0.0",
"protractor-browser-logs": "^1.0.446",
"standard-version": "^9.1.0",
"ts-node": "^10.0.0",
"typescript": "~4.6.4",
"typescript-tslint-plugin": "^1.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}