forked from Wykks/ngx-mapbox-gl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.23 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
{
"name": "ngx-mapbox-gl-srcs",
"version": "10.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve showcase",
"build": "nx run-many --target=build --all",
"test": "nx run-many --target=test --all",
"release": "standard-version -a",
"update-version": "./update_version.sh",
"deploy-showcase": "nx build showcase --base-href '/ngx-mapbox-gl/' && cp dist/apps/showcase/index.html dist/apps/showcase/404.html && gh-pages -d dist/apps/showcase",
"commit": "lint-staged --relative && cz --no-verify",
"postinstall": "husky install"
},
"standard-version": {
"scripts": {
"postbump": "yarn update-version && yarn build",
"precommit": "git add libs/ngx-mapbox-gl/package.json"
}
},
"lint-staged": {
"*": [
"nx affected:lint --fix --files",
"nx format:write --files"
]
},
"private": true,
"devDependencies": {
"@angular-devkit/build-angular": "16.0.4",
"@angular-devkit/core": "16.0.4",
"@angular-devkit/schematics": "16.0.4",
"@angular-eslint/eslint-plugin": "16.0.3",
"@angular-eslint/eslint-plugin-template": "16.0.3",
"@angular-eslint/template-parser": "16.0.3",
"@angular/cli": "~16.0.0",
"@angular/compiler-cli": "16.0.4",
"@angular/language-service": "16.0.4",
"@hirez_io/observer-spy": "2.2.0",
"@ngrx/schematics": "16.0.1",
"@nx/angular": "16.3.2",
"@nx/eslint-plugin": "16.3.2",
"@nx/jest": "16.3.2",
"@nx/linter": "16.3.2",
"@nx/workspace": "16.3.2",
"@schematics/angular": "16.0.4",
"@types/jest": "29.4.4",
"@types/lodash-es": "4.17.6",
"@types/mapbox-gl": "2.7.5",
"@types/mapbox__mapbox-gl-geocoder": "4.7.2",
"@types/node": "17.0.42",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"gh-pages": "4.0.0",
"husky": "8.0.1",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jest-preset-angular": "13.1.1",
"lint-staged": "13.0.3",
"ng-packagr": "16.0.1",
"nx": "16.3.2",
"nx-cloud": "16.0.5",
"postcss": "8.4.14",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.7.2",
"postcss-url": "10.1.3",
"prettier": "2.7.1",
"standard-version": "9.5.0",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"packageManager": "yarn@3.6.0",
"dependencies": {
"@angular/animations": "16.0.4",
"@angular/cdk": "16.0.3",
"@angular/common": "16.0.4",
"@angular/compiler": "16.0.4",
"@angular/core": "16.0.4",
"@angular/forms": "16.0.4",
"@angular/material": "16.0.3",
"@angular/platform-browser": "16.0.4",
"@angular/platform-browser-dynamic": "16.0.4",
"@angular/router": "16.0.4",
"@ngrx/effects": "16.0.1",
"@ngrx/router-store": "16.0.1",
"@ngrx/store": "16.0.1",
"@stackblitz/sdk": "1.3.0",
"lodash-es": "4.17.21",
"mapbox-gl": "2.9.2",
"ngx-markdown": "14.0.1",
"rxjs": "7.8.1",
"scroll-into-view-if-needed": "2.2.29",
"tslib": "2.4.0",
"zone.js": "0.13.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}