-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.86 KB
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
{
"name": "angular-lastfm-app",
"version": "1.0.0",
"description": "Angular app for using the lastfm api.",
"main": "index.js",
"scripts": {
"build:prod": "webpack --config webpack.config.prod.js --mode production",
"build:dev": "webpack --config webpack.config.dev.js --mode development",
"start": "webpack-dev-server --config webpack.config.dev.js --mode development",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Naooki/angular-lastfm-app.git"
},
"keywords": [
"Angular",
"Material",
"REST",
"webpack",
"LastFM"
],
"author": "Naooki",
"license": "ISC",
"bugs": {
"url": "https://github.com/Naooki/angular-lastfm-app/issues"
},
"homepage": "https://github.com/Naooki/angular-lastfm-app#readme",
"devDependencies": {
"tslint": "^5.10.0",
"tslint-loader": "^3.6.0",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"@angular/animations": "^6.0.3",
"@angular/cdk": "^6.1.0",
"@angular/common": "^6.0.3",
"@angular/compiler": "^6.0.3",
"@angular/core": "^6.0.3",
"@angular/forms": "^6.0.3",
"@angular/http": "^6.0.3",
"@angular/material": "^6.1.0",
"@angular/platform-browser": "^6.0.3",
"@angular/platform-browser-dynamic": "^6.0.3",
"@angular/router": "^6.0.3",
"@types/node": "^10.1.2",
"angular2-template-loader": "^0.6.2",
"copy-webpack-plugin": "^4.5.1",
"core-js": "^2.5.7",
"css-loader": "^0.28.9",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.0",
"raw-loader": "^0.5.1",
"rxjs": "^6.2.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.21.0",
"ts-loader": "^4.3.0",
"typescript": "^2.8.3",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4",
"zone.js": "^0.8.26"
}
}