-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.22 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.22 KB
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": "14.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/browser/index.html dist/apps/showcase/browser/404.html && gh-pages -d dist/apps/showcase/browser",
"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": "21.1.1",
"@angular-devkit/core": "21.1.1",
"@angular-devkit/schematics": "21.1.1",
"@angular-eslint/eslint-plugin": "21.1.0",
"@angular-eslint/eslint-plugin-template": "21.1.0",
"@angular-eslint/template-parser": "21.1.0",
"@angular/cli": "21.1.1",
"@angular/compiler-cli": "21.1.1",
"@angular/language-service": "21.1.1",
"@hirez_io/observer-spy": "2.2.0",
"@ngrx/schematics": "19.1.0",
"@nx/angular": "22.4.1",
"@nx/eslint": "22.4.1",
"@nx/eslint-plugin": "22.4.1",
"@nx/jest": "22.4.1",
"@nx/workspace": "22.4.1",
"@schematics/angular": "21.1.1",
"@types/geojson": "7946.0.16",
"@types/jest": "30.0.0",
"@types/lodash-es": "4.17.12",
"@types/node": "20.17.30",
"@typescript-eslint/utils": "^8.33.1",
"angular-eslint": "21.1.0",
"autoprefixer": "10.4.21",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "10.1.2",
"gh-pages": "6.3.0",
"husky": "9.1.7",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"jest-preset-angular": "16.0.0",
"jest-util": "30.0.5",
"lint-staged": "15.5.1",
"ng-packagr": "21.1.0",
"ngxtension-plugin": "5.0.0",
"nx": "22.4.1",
"postcss": "8.5.3",
"postcss-import": "16.1.0",
"postcss-preset-env": "10.1.5",
"postcss-url": "10.1.3",
"prettier": "3.5.3",
"standard-version": "9.5.0",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.33.1"
},
"packageManager": "yarn@4.9.1",
"dependencies": {
"@angular/animations": "21.1.1",
"@angular/cdk": "21.1.1",
"@angular/common": "21.1.1",
"@angular/compiler": "21.1.1",
"@angular/core": "21.1.1",
"@angular/forms": "21.1.1",
"@angular/material": "21.1.1",
"@angular/platform-browser": "21.1.1",
"@angular/platform-browser-dynamic": "21.1.1",
"@angular/router": "21.1.1",
"@stackblitz/sdk": "1.11.0",
"lodash-es": "4.17.21",
"mapbox-gl": "3.11.0",
"marked": "15.0.8",
"ngx-markdown": "20.1.0",
"prismjs": "1.30.0",
"rxjs": "7.8.2",
"scroll-into-view-if-needed": "3.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}