-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
99 lines (99 loc) · 3.42 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
{
"name": "ng-vcl",
"version": "3.1.2",
"private": true,
"scripts": {
"ng": "ng",
"start": "npm run dev:demo",
"dev": "npm run dev:demo",
"dev:demo": "ng serve ng-vcl-demo",
"dev:ng-vcl": "ng build @vcl/ng-vcl --watch",
"dev:wc": "ng serve ng-vcl-wc-test",
"docs": "cross-env-shell npm run docs:set-env npm-run-all docs:set-env docs:clean docs:pull-current docs:build",
"docs:set-env": "cross-env-shell GIT_BRANCH=${GIT_BRANCH:-$(git rev-parse --abbrev-ref HEAD)}",
"docs:build": "cross-env-shell ng build --configuration=production --output-path=docs/${GIT_BRANCH}",
"docs:deploy": "git-directory-deploy --directory docs --branch gh-pages",
"docs:clean": "rimraf docs",
"docs:lint": "ng lint ng-vcl-demo",
"docs:pull-current": "git clone -b gh-pages --single-branch https://github.com/ng-vcl/ng-vcl.git docs",
"format": "prettier --write \"**/*.ts\"",
"test": "ng test @vcl/ng-vcl --watch=false",
"lint": "ng lint",
"e2e": "ng e2e",
"build:clean": "rimraf dist/ng-vcl",
"build:ng-vcl": "ng build @vcl/ng-vcl",
"build": "npm-run-all build:clean build:ng-vcl",
"clean": "npm-run-all build:clean docs:clean",
"markdownlint": "markdownlint -c markdownlint.json lib/",
"publish": "cd dist/ng-vcl && npm publish",
"publish:next": "cd dist/ng-vcl && npm publish --tag next",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1"
},
"dependencies": {
"@angular/animations": "^18.2.5",
"@angular/cdk": "^18.2.5",
"@angular/common": "^18.2.5",
"@angular/compiler": "^18.2.5",
"@angular/core": "^18.2.5",
"@angular/elements": "^18.2.5",
"@angular/forms": "^18.2.5",
"@angular/platform-browser": "^18.2.5",
"@angular/platform-browser-dynamic": "^18.2.5",
"@angular/router": "^18.2.5",
"@fortawesome/fontawesome-free": "^6.6.0",
"@mdi/font": "^7.4.47",
"@types/marked": "^6.0.0",
"@vcl/vcl": "^3.2.1",
"core-js": "^3.38.1",
"document-register-element": "^1.14.10",
"fuse.js": "^7.0.0",
"hammerjs": "^2.0.8",
"jsonschema": "^1.4.1",
"marked": "^13.0.2",
"ngx-markdown": "^18.0.0",
"normalize.css": "^8.0.1",
"raw-loader": "^4.0.2",
"rxjs": "^7.8.1",
"sass": "^1.79.3",
"sass-loader": "^16.0.2",
"tslib": "^2.7.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.5",
"@angular-devkit/core": "^18.2.5",
"@angular/cli": "^18.2.5",
"@angular/compiler-cli": "^18.2.5",
"@angular/language-service": "^18.2.5",
"@types/jasmine": "^5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^22.5.5",
"codelyzer": "^6.0.2",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"cz-conventional-changelog": "^3.3.0",
"git-directory-deploy": "^1.5.1",
"jasmine-core": "^5.3.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"lerna": "^8.1.8",
"ng-packagr": "^18.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"protractor": "^7.0.0",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.5.0",
"webpack": "^5.93.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}