-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.2 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.2 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
65
66
67
68
69
70
71
{
"name": "angular-aot-webpack",
"version": "1.0.0",
"description": "An example that configure AOT for angular app that use other external 3rd party libraries like bootstrap, jquery",
"directories": {
"test": "test"
},
"scripts": {
"test": "test",
"dist": "webpack --config ./webpack/webpack.prod.js",
"dev": "node ./webpack/webpack.serve.js",
"prod": "npm run dist && lite-server --baseDir=dist",
"prod-run": "lite-server --baseDir=dist"
},
"author": "Ryan",
"license": "ISC",
"devDependencies": {
"@angular/compiler": "^7.2.12",
"@angular/compiler-cli": "^7.2.12",
"@ngtools/webpack": "^7.3.8",
"@types/jquery": "^3.3.29",
"@types/lodash": "^4.14.123",
"angular-router-loader": "^0.8.5",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^5.2.1",
"compression-webpack-plugin": "^1.1.12",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.1.0",
"lite-server": "^2.4.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"resolve-url-loader": "^2.3.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.20.3",
"typescript": "^3.1.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^3.3.0",
"webpack-hot-client": "^4.1.1",
"webpack-merge": "^4.2.1",
"webpack-serve": "^2.0.3"
},
"dependencies": {
"@angular/common": "^7.2.12",
"@angular/core": "^7.2.12",
"@angular/forms": "^7.2.12",
"@angular/http": "^7.2.12",
"@angular/platform-browser": "^7.2.12",
"@angular/platform-browser-dynamic": "^7.2.12",
"@angular/router": "^7.2.12",
"@fortawesome/fontawesome-free": "^5.8.1",
"bootstrap": "^4.3.1",
"core-js": "^2.6.5",
"datepair.js": "^0.4.16",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"lodash": "^4.17.11",
"popper.js": "^1.15.0",
"rxjs": "^6.4.0",
"simple-line-icons": "^2.4.1",
"slick-carousel": "^1.8.1",
"timepicker": "^1.11.14",
"webpack": "^4.29.6",
"zone.js": "^0.8.29"
}
}