-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.88 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
{
"name": "spotifyunchained",
"description": "Automatically archive spotify playlist new music tuesday",
"version": "0.1.0",
"author": "Michael Bukosky",
"engines": {
"node": "18.x",
"npm": "9.8.x"
},
"scripts": {
"ng": "ng",
"start": "node server.js",
"build": "ng build --configuration production",
"test": "ng test",
"test-headless": "ng test --watch=false --browsers=ChromeHeadless",
"lint": "jshint config/ app/ && ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^14.3.0",
"@angular/cdk": "^14.2.7",
"@angular/common": "^14.3.0",
"@angular/compiler": "^14.3.0",
"@angular/core": "^14.3.0",
"@angular/flex-layout": "^14.0.0-beta.41",
"@angular/forms": "^14.3.0",
"@angular/material": "^14.2.7",
"@angular/platform-browser": "^14.3.0",
"@angular/platform-browser-dynamic": "^14.3.0",
"@angular/router": "^14.3.0",
"@fortawesome/angular-fontawesome": "^0.11.1",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@types/lodash": "^4.14.170",
"chalk": "^4.1.1",
"compression": "^1.7.4",
"express": "^4.17.1",
"forever": "^4.0.1",
"glob": "^7.1.7",
"google-auth-library": "^6.1.6",
"helmet": "^4.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongoose": "^5.13.13",
"morgan": "^1.10.0",
"newrelic": "^8.6.0",
"node-fetch": "^2.6.6",
"node-schedule": "^1.3.3",
"nodemailer": "^6.6.1",
"rxjs": "^6.6.7",
"spotify-web-api-node": "^4.0.0",
"tslib": "^2.2.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^14.1.0",
"@angular-devkit/build-angular": "^14.2.13",
"@angular-eslint/builder": "14.4.0",
"@angular-eslint/eslint-plugin": "14.4.0",
"@angular-eslint/eslint-plugin-template": "14.4.0",
"@angular-eslint/schematics": "14.4.0",
"@angular-eslint/template-parser": "14.4.0",
"@angular/cli": "^14.2.13",
"@angular/compiler-cli": "^14.3.0",
"@types/jasmine": "^3.7.6",
"@types/jasminewd2": "^2.0.9",
"@types/node": "^12.20.13",
"@types/spotify-api": "0.0.4",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"codelyzer": "^6.0.2",
"eslint": "^8.28.0",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"jshint": "^2.12.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.6.0",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"protractor": "~7.0.0",
"should": "^13.2.3",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.8.4"
}
}