-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.45 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.45 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
{
"name": "angular-six-webpack",
"version": "1.0.0",
"description": "Compile angular source without using angular-cli",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"build:dll": "webpack --config webpack.dll.js",
"build": "webpack --mode production",
"postbuild": "node ./build-scripts/post-build.js"
},
"author": "Jasmine Hirpara",
"license": "MIT",
"dependencies": {
"@angular/animations": "^6.1.10",
"@angular/cdk": "^7.0.2",
"@angular/common": "^6.1.10",
"@angular/compiler": "^6.1.10",
"@angular/core": "^6.1.10",
"@angular/forms": "^6.1.10",
"@angular/http": "^6.1.10",
"@angular/material": "^7.0.2",
"@angular/platform-browser": "^6.1.10",
"@angular/platform-browser-dynamic": "^6.1.10",
"@angular/router": "^6.1.10",
"core-js": "^2.6.0",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular/cli": "6.2.1",
"@angular/compiler-cli": "6.1.10",
"@ngtools/webpack": "^7.1.1",
"add-asset-html-webpack-plugin": "^3.1.2",
"css-loader": "^1.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.5",
"raw-loader": "^0.5.1",
"style-loader": "^0.23.1",
"to-string-loader": "^1.1.5",
"webpack": "^4.27.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}