forked from trungvose/angular-spotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular.json
110 lines (110 loc) · 5.38 KB
/
angular.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
{
"version": 2,
"cli": {
"defaultCollection": "@nrwl/angular"
},
"defaultProject": "angular-spotify",
"generators": {
"@nrwl/angular": {
"application": {
"linter": "eslint"
},
"library": {
"linter": "eslint"
},
"storybook-configuration": {
"linter": "eslint"
}
},
"@nrwl/angular:application": {
"style": "scss",
"linter": "eslint",
"unitTestRunner": "jest",
"e2eTestRunner": "cypress"
},
"@nrwl/angular:library": {
"style": "scss",
"linter": "eslint",
"unitTestRunner": "jest",
"strict": true
},
"@nrwl/angular:component": {
"style": "scss"
}
},
"projects": {
"angular-spotify": "apps/angular-spotify",
"angular-spotify-e2e": "apps/angular-spotify-e2e",
"web-album-data-access": "libs/web/album/data-access",
"web-album-feature-detail": "libs/web/album/feature/detail",
"web-album-feature-list": "libs/web/album/feature/list",
"web-album-feature-shell": "libs/web/album/feature/shell",
"web-album-ui-album-track": "libs/web/album/ui/album-track",
"web-artist-data-access": "libs/web/artist/data-access",
"web-artist-feature": "libs/web/artist/feature",
"web-artist-ui-artist-top-track": "libs/web/artist/ui/artist-top-track",
"web-artist-ui-artist-top-tracks": "libs/web/artist/ui/artist-top-tracks",
"web-auth-data-access": "libs/web/auth/data-access",
"web-auth-ui-unauthorized-modal": "libs/web/auth/ui/unauthorized-modal",
"web-auth-util": "libs/web/auth/util",
"web-browse-data-access": "libs/web/browse/data-access",
"web-browse-feature-categories": "libs/web/browse/feature/categories",
"web-browse-feature-category": "libs/web/browse/feature/category",
"web-browse-feature-shell": "libs/web/browse/feature/shell",
"web-browse-ui-category-cover": "libs/web/browse/ui/category-cover",
"web-home-data-access": "libs/web/home/data-access",
"web-home-feature": "libs/web/home/feature",
"web-home-ui-featured-playlists": "libs/web/home/ui/featured-playlists",
"web-home-ui-greeting": "libs/web/home/ui/greeting",
"web-home-ui-recent-played": "libs/web/home/ui/recent-played",
"web-playlist-data-access": "libs/web/playlist/data-access",
"web-playlist-feature-detail": "libs/web/playlist/feature/detail",
"web-playlist-feature-list": "libs/web/playlist/feature/list",
"web-playlist-ui-playlist-track": "libs/web/playlist/ui/playlist-track",
"web-search-data-access": "libs/web/search/data-access",
"web-search-feature": "libs/web/search/feature",
"web-settings-data-access": "libs/web/settings/data-access",
"web-settings-feature": "libs/web/settings/feature",
"web-shared-app-config": "libs/web/shared/app-config",
"web-shared-assets": "libs/web/shared/assets",
"web-shared-data-access-models": "libs/web/shared/data-access/models",
"web-shared-data-access-spotify-api": "libs/web/shared/data-access/spotify-api",
"web-shared-data-access-store": "libs/web/shared/data-access/store",
"web-shared-directives-click-stop-propagation": "libs/web/shared/directives/click-stop-propagation",
"web-shared-pipes-duration-pipe": "libs/web/shared/pipes/duration-pipe",
"web-shared-ui-icon": "libs/web/shared/ui/icon",
"web-shared-ui-input": "libs/web/shared/ui/input",
"web-shared-ui-media": "libs/web/shared/ui/media",
"web-shared-ui-media-cover": "libs/web/shared/ui/media-cover",
"web-shared-ui-media-order": "libs/web/shared/ui/media-order",
"web-shared-ui-media-summary": "libs/web/shared/ui/media-summary",
"web-shared-ui-media-table": "libs/web/shared/ui/media-table",
"web-shared-ui-play-button": "libs/web/shared/ui/play-button",
"web-shared-ui-playlist-list": "libs/web/shared/ui/playlist-list",
"web-shared-ui-spinner": "libs/web/shared/ui/spinner",
"web-shared-ui-track-current-info": "libs/web/shared/ui/track-current-info",
"web-shared-ui-track-main-info": "libs/web/shared/ui/track-main-info",
"web-shared-ui-tracks-loading": "libs/web/shared/ui/tracks-loading",
"web-shared-ui-work-in-progress": "libs/web/shared/ui/work-in-progress",
"web-shared-utils": "libs/web/shared/utils",
"web-shell-feature": "libs/web/shell/feature",
"web-shell-ui-album-art-overlay": "libs/web/shell/ui/album-art-overlay",
"web-shell-ui-layout": "libs/web/shell/ui/layout",
"web-shell-ui-main-view": "libs/web/shell/ui/main-view",
"web-shell-ui-nav-bar": "libs/web/shell/ui/nav-bar",
"web-shell-ui-nav-bar-playlist": "libs/web/shell/ui/nav-bar-playlist",
"web-shell-ui-now-playing-bar": "libs/web/shell/ui/now-playing-bar",
"web-shell-ui-player-controls": "libs/web/shell/ui/player-controls",
"web-shell-ui-player-playback": "libs/web/shell/ui/player-playback",
"web-shell-ui-player-volume": "libs/web/shell/ui/player-volume",
"web-shell-ui-social-share": "libs/web/shell/ui/social-share",
"web-shell-ui-top-bar": "libs/web/shell/ui/top-bar",
"web-shell-ui-user-dropdown": "libs/web/shell/ui/user-dropdown",
"web-shell-ui-visualization-toggle": "libs/web/shell/ui/visualization-toggle",
"web-tracks-data-access": "libs/web/tracks/data-access",
"web-tracks-feature": "libs/web/tracks/feature",
"web-visualizer-data-access": "libs/web/visualizer/data-access",
"web-visualizer-feature": "libs/web/visualizer/feature",
"web-visualizer-ui": "libs/web/visualizer/ui"
}
}