forked from d-koppenhagen/k9n.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 4.03 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
{
"name": "d-koppenhagen-website",
"version": "0.0.0",
"description": "k9n.dev website",
"scripts": {
"dev": "npm-run-all --parallel build:watch scully:watch",
"release": "standard-version",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:watch": "ng build --watch",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"scully": "scully --ks --scan --no-warning",
"scully:watch": "npm run scully -- --watch",
"scully:serve": "npx scully serve",
"scully:all": "npm run build && npm run scully -- --scanRoutes && npm run scully:serve",
"post": "ng g @scullyio/init:post --metaDataFile='templates/blog-meta.yaml' --target='blog'",
"project": "ng g @scullyio/init:post --metaDataFile='templates/project-meta.yaml' --target='projects'",
"prepare": "husky install"
},
"private": true,
"author": "Danny Koppenhagen <[email protected]> (https://k9n.dev)",
"homepage": "https://github.com/d-koppenhagen/d-koppenhagen-website",
"bugs": {
"url": "https://github.com/d-koppenhagen/d-koppenhagen-website/issues",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@angular/animations": "^14.0.6",
"@angular/cdk": "^14.0.5",
"@angular/common": "^14.0.6",
"@angular/compiler": "^14.0.6",
"@angular/core": "^14.0.6",
"@angular/forms": "^14.0.6",
"@angular/platform-browser": "^14.0.6",
"@angular/platform-browser-dynamic": "^14.0.6",
"@angular/router": "^14.0.6",
"@angular/service-worker": "^14.0.6",
"@angular/youtube-player": "^14.0.5",
"@fortawesome/angular-fontawesome": "^0.10.1",
"@fortawesome/fontawesome-free": "^5.15.4",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@ngneat/transloco": "^4.1.1",
"@scullyio/init": "^2.1.36",
"@scullyio/ng-lib": "^2.1.36",
"@scullyio/scully": "^2.1.36",
"@scullyio/scully-plugin-critical-css": "^2.1.36",
"@scullyio/scully-plugin-puppeteer": "^2.1.36",
"animate.css": "^4.1.1",
"clipboard": "^2.0.11",
"ng-navigator-share": "^1.0.4",
"ngx-sharebuttons": "^11.0.0",
"ngx-twitter-timeline": "^0.1.5",
"prismjs": "^1.28.0",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.6",
"@angular-eslint/builder": "^14.0.2",
"@angular-eslint/eslint-plugin": "^14.0.2",
"@angular-eslint/eslint-plugin-template": "^14.0.2",
"@angular-eslint/schematics": "^14.0.2",
"@angular-eslint/template-parser": "^14.0.2",
"@angular/cli": "^14.0.6",
"@angular/compiler-cli": "^14.0.6",
"@angular/language-service": "^14.0.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-angular-type-enum": "^17.0.0",
"@commitlint/config-conventional": "^17.0.3",
"@gammastream/scully-plugin-sitemap": "1.0.7",
"@k9n/scully-plugin-mermaid": "^5.0.0",
"@k9n/scully-plugin-toc": "^5.0.0",
"@types/jasmine": "~3.5.11",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "37.9.7",
"eslint-plugin-prefer-arrow": "1.2.3",
"fast-xml-parser": "^3.19.0",
"husky": "^8.0.1",
"jasmine-core": "~3.10.0",
"jasmine-spec-reporter": "~5.0.0",
"jsdom": "^20.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"protractor": "~7.0.0",
"scully-plugin-minify-html": "^6.0.0",
"ts-node": "~8.10.2",
"typescript": "~4.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}