-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 2.8 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
{
"name": "MuCritic",
"version": "1.0.0",
"description": "",
"main": "built/index.js",
"scripts": {
"docgen": "typedoc --experimentalDecorators src/",
"aggregateReviews": "tsc && node --max-old-space-size=8192 built/aggregateReviews",
"aggregateReviewMaster": "tsc && node --max-old-space-size=8192 built/aggregateReviewMaster",
"aggregateWebAlbums": "tsc && node --max-old-space-size=8192 built/aggregateWebAlbums",
"aggregateAlbums": "tsc && node --max-old-space-size=8192 built/aggregateAlbums",
"aggregateArtists": "tsc && node --max-old-space-size=8192 built/aggregateArtists",
"aggregateProfiles": "tsc && node --max-old-space-size=8192 built/aggregateProfiles",
"aggregateFavoriteArtists": "tsc && node --max-old-space-size=8192 built/aggregateFavoriteArtists",
"recommend": "tsc && node --max-old-space-size=8192 built/recommender",
"rym": "tsc && node built/scrapeRateYourMusic file",
"rymAuto": "tsc && node --max-old-space-size=8192 built/scrapeRateYourMusic",
"rymProfiles": "tsc && node built/scrapeRateYourMusicProfiles",
"serve": "tsc && node built/serveDocs",
"spotifyData": "tsc && node built/scrapeSpotifyData",
"spotifyIds": "tsc && node built/scrapeSpotifyIds",
"spotifyGenres": "tsc && node built/scrapeSpotifyGenres",
"spotifyTrackScrape": "tsc && node --max-old-space-size=8192 built/scrapeSpotifyTracks",
"spotifyAlbumTracks": "tsc && node --max-old-space-size=8192 built/aggregateTracks albums",
"spotifyArtistTracks": "tsc && node --max-old-space-size=8192 built/aggregateTracks artists",
"spotifyTracks": "tsc && node --max-old-space-size=8192 built/aggregateTracks tracks"
},
"author": "Michael Darr",
"license": "ISC",
"dependencies": {
"@tensorflow/tfjs": "^1.2.2",
"@tensorflow/tfjs-node": "^1.2.3",
"@types/dotenv": "^6.1.1",
"@types/jsdom": "^12.2.3",
"@types/redis": "^2.8.13",
"@types/request": "^2.48.1",
"chalk": "^2.4.2",
"csv-writer": "^1.4.0",
"dotenv": "^7.0.0",
"express": "^4.17.1",
"html-entities": "^1.2.1",
"js-base64": "^2.5.1",
"jsdom": "^15.1.0",
"node-html-parser": "^1.1.15",
"pg": "^7.11.0",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"sqlite": "^3.0.2",
"sqlite3": "^4.0.6",
"typeorm": "^0.2.17",
"typescript": "^3.4.5"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.12.9",
"@types/node": "^11.13.13",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"typedoc": "^0.14.2"
}
}