-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.96 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "example-website",
"flat": true,
"private": true,
"version": "1.0.0",
"license": "",
"author": "example",
"contributors": [
"example LLC"
],
"description": "desc",
"repository": "",
"main": "ClientApp/bootstrap.ts",
"browserslist": [
"last 2 versions",
"not ie <= 10",
"not ie_mob <= 10"
],
"engines": {
"node": ">=8.3",
"npm": ">= 6.14.0"
},
"scripts": {
"dev": "start cmd /c npm run dev:app && start cmd /c npm run dev:admin",
"dev:app": "webpack-serve --config ClientApp/conf/dev.config.js --host localhost --port 8070 --static ./wwwroot --wait-for-build --no-hmr",
"dev:admin": "webpack-serve --config ClientApp/conf/dev-admin.config.js --host localhost --port 8071 --static ./wwwroot --wait-for-build --no-hmr"
},
"dependencies": {
"@polymer/polymer": "3.4.1",
"hard-source-webpack-plugin": "0.13.1",
"@webcomponents/webcomponentsjs": "2.4.4"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-external-helpers": "7.2.0",
"@babel/plugin-proposal-async-generator-functions": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
"@babel/plugin-syntax-async-generators": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-import-meta": "7.2.0",
"@babel/plugin-syntax-object-rest-spread": "7.2.0",
"@babel/plugin-transform-arrow-functions": "7.2.0",
"@babel/plugin-transform-async-to-generator": "7.5.0",
"@babel/plugin-transform-block-scoped-functions": "7.2.0",
"@babel/plugin-transform-block-scoping": "7.5.5",
"@babel/plugin-transform-classes": "7.5.5",
"@babel/plugin-transform-computed-properties": "7.2.0",
"@babel/plugin-transform-destructuring": "7.5.0",
"@babel/plugin-transform-duplicate-keys": "7.5.0",
"@babel/plugin-transform-exponentiation-operator": "7.2.0",
"@babel/plugin-transform-for-of": "7.4.4",
"@babel/plugin-transform-function-name": "7.4.4",
"@babel/plugin-transform-instanceof": "7.5.5",
"@babel/plugin-transform-literals": "7.2.0",
"@babel/plugin-transform-modules-amd": "7.5.0",
"@babel/plugin-transform-object-super": "7.5.5",
"@babel/plugin-transform-parameters": "7.4.4",
"@babel/plugin-transform-regenerator": "7.4.5",
"@babel/plugin-transform-shorthand-properties": "7.2.0",
"@babel/plugin-transform-spread": "7.2.2",
"@babel/plugin-transform-sticky-regex": "7.2.0",
"@babel/plugin-transform-template-literals": "7.4.4",
"@babel/plugin-transform-typeof-symbol": "7.2.0",
"@babel/plugin-transform-unicode-regex": "7.4.4",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.5.5",
"@types/lodash": "4.14.149",
"awesome-typescript-loader": "5.2.1",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "8.0.6",
"babel-plugin-template-html-minifier": "3.1.0",
"babel-preset-minify": "0.6.0-alpha.5",
"caniuse-lite": "1.0.30001036",
"clean-webpack-plugin": "0.1.19",
"connect-history-api-fallback": "1.6.0",
"copy-webpack-plugin": "5.1.1",
"css-loader": "3.4.2",
"debug": "4.1.1",
"express": "4.17.1",
"file-loader": "6.0.0",
"friendly-errors-webpack-plugin": "1.7.0",
"handlebars": "^4.7.6",
"handlebars-loader": "1.7.1",
"html-loader": "1.0.0",
"html-minifier": "4.0.0",
"html-minifier-webpack-plugin": "2.2.3",
"html-webpack-plugin": "4.0.1",
"json-loader": "0.5.7",
"jsonminify": "0.4.1",
"koa-compress": "3.0.0",
"koa-connect": "2.0.1",
"polymer-webpack-loader": "3.0.0-4",
"raw-loader": "4.0.0",
"style-loader": "1.1.3",
"terser": "4.6.7",
"terser-webpack-plugin": "2.3.5",
"to-string-loader": "1.1.6",
"ts-loader": "6.2.2",
"tslint": "6.1.0",
"tslint-loader": "3.6.0",
"typescript": "3.8.3",
"vue-i18n": "8.16.0",
"vue-loader": "15.9.1",
"vue-style-loader": "4.1.2",
"vue-template-compiler": "2.6.11",
"webpack": "4.42.0",
"webpack-bundle-analyzer": "3.8.0",
"webpack-cli": "3.3.11",
"webpack-md5-hash": "0.0.6",
"webpack-merge": "4.2.2",
"webpack-plugin-hash-output": "3.2.1",
"webpack-serve": "3.2.0",
"workbox-webpack-plugin": "4.3.1"
},
"resolutions": {}
}