-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
107 lines (107 loc) · 3.33 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
{
"name": "ngx-mapbox-gl-srcs",
"version": "11.0.1",
"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": "18.1.2",
"@angular-devkit/core": "18.1.2",
"@angular-devkit/schematics": "18.1.2",
"@angular-eslint/eslint-plugin": "^18.1.0",
"@angular-eslint/eslint-plugin-template": "^18.1.0",
"@angular-eslint/template-parser": "^18.1.0",
"@angular/cli": "^18.1.2",
"@angular/compiler-cli": "18.1.2",
"@angular/language-service": "18.1.2",
"@hirez_io/observer-spy": "2.2.0",
"@ngrx/schematics": "^18.0.1",
"@nx/angular": "19.5.3",
"@nx/eslint": "19.5.3",
"@nx/eslint-plugin": "19.5.3",
"@nx/jest": "19.5.3",
"@nx/workspace": "19.5.3",
"@schematics/angular": "18.1.2",
"@types/jest": "^29.5.12",
"@types/lodash-es": "4.17.6",
"@types/mapbox-gl": "2.7.5",
"@types/mapbox__mapbox-gl-geocoder": "4.7.2",
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@typescript-eslint/utils": "^7.17.0",
"autoprefixer": "^10.4.0",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"gh-pages": "4.0.0",
"husky": "8.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-angular": "^14.2.0",
"lint-staged": "13.0.3",
"ng-packagr": "18.1.0",
"nx": "19.5.3",
"postcss": "^8.4.40",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^9.6.0",
"postcss-url": "^10.1.3",
"prettier": "2.7.1",
"standard-version": "9.5.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "5.5.4"
},
"packageManager": "yarn@3.6.0",
"dependencies": {
"@angular/animations": "18.1.2",
"@angular/cdk": "18.1.2",
"@angular/common": "18.1.2",
"@angular/compiler": "18.1.2",
"@angular/core": "18.1.2",
"@angular/forms": "18.1.2",
"@angular/material": "18.1.2",
"@angular/platform-browser": "18.1.2",
"@angular/platform-browser-dynamic": "18.1.2",
"@angular/router": "18.1.2",
"@ngrx/effects": "^18.0.1",
"@ngrx/operators": "^18.0.1",
"@ngrx/router-store": "^18.0.1",
"@ngrx/store": "^18.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.6.3",
"zone.js": "0.14.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}