-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "mvc_webpack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npm-run-all -p -r run-webpack run-livereload run-dotnet",
"run-livereload": "livereload . -w 00 -ee cshtml,cs -d",
"run-dotnet": "dotnet run",
"run-webpack": "webpack --config=webpack.dev.config.js --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"babel": {
"presets": [
"env"
]
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^1.0.0",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"livereload": "^0.7.0",
"node-sass": "^4.9.3",
"npm-run-all": "^4.1.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-livereload-plugin": "^2.1.1"
},
"dependencies": {
"@material/animation": "^0.41.0",
"@material/base": "^0.41.0",
"@material/checkbox": "^0.41.0",
"@material/form-field": "^0.41.0",
"@material/layout-grid": "^0.41.0",
"@material/radio": "^0.41.0",
"@material/ripple": "^0.41.0",
"@material/selection-control": "^0.41.0",
"@material/textfield": "^0.41.0",
"@material/theme": "^0.41.0",
"material-components-web": "^0.41.0"
}
}