This repository has been archived by the owner on Jan 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.44 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
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
84
85
86
87
88
89
90
91
92
93
{
"name": "aspnetcore-vuejs",
"description": "ASP.NET Core & VueJS Starter project - Brought to you by Trilon.io",
"author": {
"name": "Mark Pieszak | Trilon Consulting",
"email": "[email protected]",
"url": "https://trilon.io"
},
"scripts": {
"build": "npm run build-vendor:prod && npm run build:prod",
"lint": "eslint -c ./.eslintrc.js ClientApp/**/*.js ClientApp/**/*.vue ClientApp/**/*.json webpack*.js",
"build-vendor:dev": "cross-env NODE_ENV=development webpack --config webpack.config.vendor.js --progress",
"build-vendor:prod": "cross-env NODE_ENV=production webpack --config webpack.config.vendor.js --progress",
"build:prod": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"dev": "cross-env ASPNETCORE_ENVIRONMENT=Development NODE_ENV=development dotnet run",
"install": "npm run build-vendor:dev",
"update-packages": "npx npm-check -u"
},
"dependencies": {
"axios": "^0.19.0",
"core-js": "^2.5.3",
"font-awesome": "^4.7.0",
"material-design-icons-iconfont": "^5.0.1",
"vue": "^2.6.10",
"vue-axios": "^2.1.4",
"vue-fullcalendar": "^1.0.9",
"vue-router": "^3.0.3",
"vue-server-renderer": "^2.6.10",
"vue-swatches": "^1.0.2",
"vue-template-compiler": "^2.6.10",
"vuetify": "^1.5.16",
"vuex": "^3.1.0",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.1",
"@fortawesome/fontawesome-svg-core": "^1.2.13",
"@fortawesome/free-brands-svg-icons": "^5.7.0",
"@fortawesome/free-solid-svg-icons": "^5.7.0",
"@fortawesome/vue-fontawesome": "^0.1.5",
"aspnet-webpack": "^3.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"bootstrap": "^4.0.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"event-source-polyfill": "^1.0.5",
"file-loader": "^3.0.1",
"font-awesome": "^4.7.0",
"jquery": "^3.4.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.8.2",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"popper.js": "^1.14.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"url-loader": "^1.1.2",
"vue-cli-plugin-vuetify": "^0.5.0",
"vue-loader": "^15.6.2",
"vuetify-loader": "^1.0.5",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-hot-middleware": "^2.21.2"
},
"license": "MIT",
"repository": {
"url": "https://github.com/TrilonIO/aspnetcore-Vue-starter"
}
}