This repository has been archived by the owner on Apr 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
75 lines (75 loc) · 2.25 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
{
"name": "polymer3-webpack-starter-kit",
"version": "1.0.0",
"description": "Polymer 3 Starter Kit with Webpack",
"main": "src/bootstrap.ts",
"author": "Dabolus",
"license": "MIT",
"private": true,
"scripts": {
"serve": "webpack-serve --config ./conf/webpack/dev.config.js",
"build": "webpack --config ./conf/webpack/prod.config.js",
"deploy": "firebase deploy"
},
"dependencies": {
"@polymer/app-layout": "^3.0.2",
"@polymer/app-route": "^3.0.2",
"@polymer/iron-flex-layout": "^3.0.1",
"@polymer/iron-iconset-svg": "^3.0.1",
"@polymer/iron-media-query": "^3.0.1",
"@polymer/iron-pages": "^3.0.1",
"@polymer/iron-selector": "^3.0.1",
"@polymer/paper-button": "^3.0.1",
"@polymer/paper-icon-button": "^3.0.1",
"@polymer/paper-input": "^3.0.1",
"@polymer/polymer": "^3.1.0",
"@webcomponents/webcomponentsjs": "^2.2.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"caniuse-lite": "^1.0.30000925",
"clean-webpack-plugin": "^1.0.0",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.6.0",
"cssnano": "^4.1.8",
"handlebars": "^4.0.12",
"handlebars-loader": "^1.7.1",
"html-loader": "^0.5.5",
"html-minifier": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"koa-compress": "^3.0.0",
"koa-connect": "^2.0.1",
"node-sass": "^4.11.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"postcss-safe-parser": "^4.0.1",
"sass-loader": "^7.1.0",
"script-ext-html-webpack-plugin": "^2.1.3",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.1",
"to-string-loader": "^1.1.5",
"ts-loader": "^5.3.2",
"tslint": "^5.12.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.2.2",
"webpack": "^4.28.3",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.5",
"webpack-serve": "^2.0.3",
"workbox-webpack-plugin": "^4.0.0"
},
"browserslist": [
"last 2 versions",
"not ie <= 10",
"not ie_mob <= 10"
],
"engines": {
"node": ">=8.3"
}
}