-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 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
{
"name": "rss-reader",
"private": true,
"license": "MIT",
"scripts": {
"action:deploy": "ng deploy --name $GITHUB_ACTOR --email [email protected] --no-silent",
"action:deployDryRun": "ng deploy --name=$GITHUB_ACTOR [email protected] --no-silent --no-build",
"action:e2e": "ng e2e --protractor-config=projects/rss-reader/e2e/protractor-ci.conf.js",
"action:test": "ng test --no-watch --no-progress --code-coverage --browsers=ChromeHeadlessCI",
"deploy": "ng deploy",
"pree2e": "webdriver-manager update",
"e2e": "protractor",
"genDocs": "gulp docs",
"githubPages": "npm run genDocs && ng deploy && rm -rf dist/",
"lint": "eslint",
"start": "ng serve",
"test": "ng test",
"storybook": "ng run rss-reader:storybook",
"build-storybook": "ng run rss-reader:build-storybook"
},
"type": "module",
"overrides": {
"webpack": "^5.70.0"
},
"dependencies": {
"@angular/animations": "^18.2.2",
"@angular/cdk": "^18.2.2",
"@angular/common": "^18.2.2",
"@angular/compiler": "^18.2.2",
"@angular/core": "^18.2.2",
"@angular/forms": "^18.2.2",
"@angular/material": "^18.2.2",
"@angular/platform-browser": "^18.2.2",
"@angular/platform-browser-dynamic": "^18.2.2",
"@angular/router": "^18.2.2",
"@angular/service-worker": "^18.2.2",
"@mdi/angular-material": "^6.5.95",
"@types/highlight.js": "^9.12.4",
"highlight.js": "^10.4.1",
"markdown-to-html": "0.0.13",
"marked": "^12.0.2",
"ngx-markdown": "^18.0.0",
"rxjs": "^7.5.4",
"tslib": "^2.5.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1802.2",
"@angular-devkit/build-angular": "^18.2.2",
"@angular/cli": "^18.2.2",
"@angular/compiler-cli": "^18.2.2",
"@babel/core": "^7.19.1",
"@compodoc/compodoc": "^1.1.25",
"@storybook/addon-actions": "^8.2.9",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-themes": "^8.2.9",
"@storybook/angular": "^8.2.9",
"@storybook/manager-api": "^8.2.9",
"@storybook/theming": "^8.2.9",
"@stylistic/eslint-plugin": "^2.7.2",
"@types/eslint__js": "^8.42.3",
"@types/gulp": "^4.0.8",
"@types/gulp-rename": "0.0.33",
"@types/hammerjs": "^2.0.36",
"@types/jasmine": "~3.10.3",
"@types/jasminewd2": "~2.0.10",
"@types/marked": "^4.3.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"angular-cli-ghpages": "^2.0.1",
"angular-eslint": "^18.3.0",
"babel-loader": "^8.3.0",
"copy-webpack-plugin": "^4.6.0",
"eslint": "^9.9.1",
"gulp": "^4.0.2",
"gulp-markdown": "^6.0.0",
"gulp-rename": "^1.4.0",
"gulp-transform": "^3.0.5",
"jasmine-core": "~3.99.1",
"jasmine-spec-reporter": "~5.0.2",
"karma": "~6.3.17",
"karma-chrome-launcher": "~3.2.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-remap-istanbul": "^0.6.0",
"postcss": "^8.4.31",
"protractor": "~7.0.0",
"react-is": "^16.13.1",
"ts-node": "~8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^5.4.5",
"typescript-eslint": "^8.4.0",
"webpack": "^5.70.0"
}
}