-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"name": "webmvc-php",
"description": "WebWay php MVC framework, mainly mimicking the .NET asp & mvc framework .",
"version": "1.0.0",
"license": "GPL-3.0 License",
"authors": [
{
"name": "vlad_dinu",
"website": "https://github.com/vladd-bit/"
}
],
"private": true,
"scripts": {
"development": "webpack --config webpack.config.development.js",
"production": "webpack --config webpack.config..production.js",
"webpack-defaults": "webpack-defaults",
"defaults": "webpack-defaults"
},
"dependencies": {
"@angular/animations": "^6.0.0",
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/forms": "^6.0.0",
"@angular/http": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/platform-browser-dynamic": "^6.0.0",
"@angular/router": "^6.0.0",
"material-components-web": "^0.39.3",
"typescript": "^3.6.4"
},
"devDependencies": {
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.9",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.4"
}
}