This repository was archived by the owner on Jan 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.41 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.41 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "angular-webpack-material-lazyload-typescript-starter-template",
"version": "2.0.0",
"description": "An Angular 1.5 + Angular Material + Typescript + Webpack starter template with code splitting and lazy loading",
"main": "index.js",
"scripts": {
"build": "set NODE_ENV=development&& webpack-dev-server --inline --hot",
"display-error": "webpack --display-error-details",
"dist": "set NODE_ENV=production&& webpack -p",
"analyseBuild": "set NODE_ENV=production&&webpack -p --profile --json > stats.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Georgekutty Antony",
"repository": "https://github.com/george3447/angular-webpack-material-lazyload-typescript-starter-template",
"keywords": [
"angular",
"lazyload",
"preload",
"typescript",
"webpack",
"material",
"1.5",
"components",
"starter",
"template"
],
"license": "MIT",
"dependencies": {
"@uirouter/angularjs": "1.0.16",
"angular": "1.6.10",
"angular-animate": "1.6.10",
"angular-aria": "1.6.10",
"angular-cookies": "1.6.10",
"angular-material": "1.1.9",
"angular-messages": "1.6.10",
"babel-polyfill": "6.26.0",
"core-js": "2.5.5",
"date-fns": "1.29.0",
"material-design-icons": "3.0.1",
"rxjs": "6.1.0"
},
"devDependencies": {
"@types/angular": "1.6.45",
"@types/angular-cookies": "1.4.5",
"@types/angular-material": "1.1.59",
"@types/chalk": "2.2.0",
"@types/es6-shim": "0.31.36",
"@types/jquery": "3.3.1",
"@types/node": "10.0.4",
"@types/webpack": "4.1.4",
"@types/webpack-merge": "4.1.3",
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-preset-env": "1.6.1",
"chalk": "2.4.1",
"clean-webpack-plugin": "0.1.19",
"compression-webpack-plugin": "1.1.11",
"css-loader": "0.28.11",
"file-loader": "1.1.11",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "4.9.0",
"offline-plugin": "5.0.3",
"postcss-loader": "2.1.5",
"progress-bar-webpack-plugin": "1.11.0",
"sass-loader": "7.0.1",
"style-loader": "0.21.0",
"ts-loader": "4.2.0",
"ts-node": "6.0.3",
"tslint": "5.10.0",
"tslint-loader": "3.6.0",
"typescript": "2.8.3",
"uglify-es": "3.3.9",
"uglifyjs-webpack-plugin": "1.2.5",
"webpack": "4.7.0",
"webpack-cli": "2.1.3",
"webpack-dev-server": "3.1.4",
"webpack-merge": "4.1.2",
"webpack-pwa-manifest": "3.6.2"
}
}