-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.json
90 lines (77 loc) · 3.66 KB
/
scripts.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
{
"vendor": [
"./app/components/socket.io-client/socket.io.js",
"./app/components/angular/angular.js",
"./app/components/angular-route/angular-route.js",
"./app/components/angular-animate/angular-animate.js",
"./app/components/angular-resource/angular-resource.js",
"./app/components/angular-bootstrap/ui-bootstrap-tpls.js",
"./app/components/angular-title/dist/angular-title.js",
"./app/components/angular-spotify/src/angular-spotify.js",
"./app/components/angular-socket-io/socket.js",
"./app/components/satellizer/satellizer.js",
"./app/components/angular-notification/angular-notification.js",
"./app/components/Chart.js/Chart.js",
"./app/components/angular-chart.js/dist/angular-chart.js",
"./app/components/angular-sn-infinite-scroll/dist/angular-sn-infinite-scroll.js"
],
"application": [
"./app/js/socket/socket.js",
"./app/js/loading-screen/loadingScreen.js",
"./app/js/notifications/notifications.js",
"./app/js/auth/auth.js",
"./app/js/auth/google.js",
"./app/js/auth/spotify.js",
"./app/js/auth/controllers/LoginGoogleCtrl.js",
"./app/js/auth/controllers/LoginSpotifyCtrl.js",
"./app/js/auth/services/GoogleAuthService.js",
"./app/js/auth/services/SpotifyAuthService.js",
"./app/js/alert/alert.js",
"./app/js/alert/controllers/AlertCtrl.js",
"./app/js/alert/services/AlertService.js",
"./app/js/api/api.js",
"./app/js/api/constants/errors.js",
"./app/js/api/factories/PlayerHistoryResource.js",
"./app/js/api/factories/PlayerMuteResource.js",
"./app/js/api/factories/PlayerQueueResource.js",
"./app/js/api/factories/PlayerRandomResource.js",
"./app/js/api/factories/PlayerTransportResource.js",
"./app/js/api/factories/PlayerVolumeResource.js",
"./app/js/api/factories/StatsResource.js",
"./app/js/api/factories/TracksResource.js",
"./app/js/api/factories/UsersResource.js",
"./app/js/api/factories/RequestInterceptor.js",
"./app/js/api/factories/PaginationInterceptor.js",
"./app/js/history/history.js",
"./app/js/history/controllers/HistoryCtrl.js",
"./app/js/player/player.js",
"./app/js/player/controllers/PlayerCtrl.js",
"./app/js/player/directives/track.js",
"./app/js/player/directives/slider.js",
"./app/js/player/services/TrackTimer.js",
"./app/js/player/filter/removeLeadingZeros.js",
"./app/js/playlist/playlist.js",
"./app/js/playlist/controllers/PlaylistCtrl.js",
"./app/js/search/search.js",
"./app/js/search/controllers/SearchCtrl.js",
"./app/js/search/controllers/ArtistSearchCtrl.js",
"./app/js/search/controllers/ArtistDetailCtrl.js",
"./app/js/search/controllers/AlbumSearchCtrl.js",
"./app/js/search/controllers/AlbumDetailCtrl.js",
"./app/js/search/controllers/TrackSearchCtrl.js",
"./app/js/search/directives/artist.js",
"./app/js/search/directives/album.js",
"./app/js/search/directives/playlist.js",
"./app/js/stats/stats.js",
"./app/js/stats/controllers/StatsCtrl.js",
"./app/js/stats/filters/time.js",
"./app/js/stats/services/DateUtils.js",
"./app/js/stats/services/StatsResolver.js",
"./app/js/users/users.js",
"./app/js/users/controllers/UserStatsCtrl.js",
"./app/js/users/controllers/UserPlaylistsCtrl.js",
"./app/js/users/controllers/UserPlaylistDetailCtrl.js",
"./app/js/nav/nav.js",
"./app/js/app.js"
]
}