-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
123 lines (123 loc) · 4.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@angular-extensions/elements",
"version": "18.2.1",
"scripts": {
"ng": "ng",
"prestart": "npm run build:copy-changelog",
"start": "ng serve -o",
"start:prod": "npm run build && node ./projects/elements-server/server.js",
"lint": "ng lint",
"test": "ng lint && npm run format:test && npm run test:lib",
"test:lib": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --config projects/elements/jest.config.mjs",
"watch": "ng test --watch",
"prebuild": "",
"build": "ng build elements-demo && ng build elements",
"postbuild": "npm run build:copy-changelog && replace \"onFetch.*\\{\" \"onFetch(event) { if (event.request.url.indexOf('unpkg.com') > -1) { return; }\" ./dist/elements-demo/ngsw-worker.js",
"build:copy-assets": "cpx README.md dist/elements",
"build:copy-changelog": "cpx CHANGELOG.md projects/elements-demo/src/assets",
"format:write": "prettier projects/**/*.{ts,json,md} --write",
"format:test": "prettier projects/**/*.{ts,json,md} --list-different",
"release": "standard-version -a && npm run build:copy-changelog && git add projects/elements-demo/src/assets/CHANGELOG.md && git push --follow-tags origin master",
"analyze": "ng build elements-demo --stats-json && webpack-bundle-analyzer ./dist/elements-demo/stats.json",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate && node sync-contributors.js",
"contributors:check": "all-contributors check",
"generate-dependency-graph": "npx madge projects/elements/src/public-api.ts --ts-config tsconfig.json --image ./dep-graph.png"
},
"standard-version": {
"scripts": {
"precommit": "node sync-versions.js && git add ."
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"private": false,
"dependencies": {
"@angular/animations": "^18.1.0",
"@angular/cdk": "^18.1.0",
"@angular/common": "^18.1.0",
"@angular/compiler": "^18.1.0",
"@angular/core": "^18.1.0",
"@angular/forms": "^18.1.0",
"@angular/material": "^18.1.0",
"@angular/platform-browser": "^18.1.0",
"@angular/platform-browser-dynamic": "^18.1.0",
"@angular/pwa": "^18.1.0",
"@angular/router": "^18.1.0",
"@angular/service-worker": "^18.1.0",
"highlight.js": "^11.3.1",
"ngx-highlightjs": "^12.0.0",
"ngx-markdown": "^18.0.0",
"rxjs": "^7.5.0",
"tslib": "^2.3.1",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.0",
"@angular-eslint/builder": "^18.1.0",
"@angular-eslint/eslint-plugin": "^18.1.0",
"@angular-eslint/eslint-plugin-template": "^18.1.0",
"@angular-eslint/schematics": "^18.1.0",
"@angular-eslint/template-parser": "^18.1.0",
"@angular/cli": "^18.1.0",
"@angular/compiler-cli": "^18.1.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.8",
"@types/systemjs": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"all-contributors-cli": "^6.17.4",
"compression": "^1.7.4",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"express": "^4.17.1",
"husky": "^4.3.8",
"jest": "^29.7.0",
"jest-preset-angular": "^14.1.1",
"ng-packagr": "^18.1.0",
"prettier": "^3.3.2",
"pretty-quick": "^4.0.0",
"raw-loader": "^4.0.2",
"replace": "^1.2.0",
"standard-version": "^9.3.0",
"typescript": "5.5.3",
"webpack-bundle-analyzer": "^4.4.1"
},
"keywords": [
"angular",
"elements",
"web componentst",
"custom elements",
"lazy loading",
"microfrontends",
"components",
"web component"
],
"author": "Tomas Trajan <@tomastrajan>",
"license": "MIT",
"homepage": "https://github.com/angular-extensions/elements#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/angular-extensions/elements.git"
},
"bugs": {
"url": "https://github.com/angular-extensions/elements/issues"
}
}